最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - create string from all checked values jQuery - Stack Overflow

programmeradmin2浏览0评论

Ok so I do this:

<input type="checkbox" class="checkBoxClass" value="0" />
<input type="checkbox" class="checkBoxClass" value="1" />
<input type="checkbox" class="checkBoxClass" value="2" />

Then in javascript/jquery I'm trying to do something like this:

$('#btnHtml').click(function(){
for( var checks=''; $('.checkBoxClass:checked').val() ){
    var checks = checks+', ';
}
});

Let's say all of those checkboxes are checked, how can I get var checks to be a string of '0, 1, 2' ?

Still trying to get used to the for() in JS, it might be the pletely wrong way of going about it. Not sure how to do this.

Ok so I do this:

<input type="checkbox" class="checkBoxClass" value="0" />
<input type="checkbox" class="checkBoxClass" value="1" />
<input type="checkbox" class="checkBoxClass" value="2" />

Then in javascript/jquery I'm trying to do something like this:

$('#btnHtml').click(function(){
for( var checks=''; $('.checkBoxClass:checked').val() ){
    var checks = checks+', ';
}
});

Let's say all of those checkboxes are checked, how can I get var checks to be a string of '0, 1, 2' ?

Still trying to get used to the for() in JS, it might be the pletely wrong way of going about it. Not sure how to do this.

Share Improve this question asked Jan 29, 2013 at 15:20 SilasSilas 5822 gold badges10 silver badges19 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 16

Functional programming:

var str = $('.checkBoxClass:checked').map(function() {
    return this.value;
}).get().join();

Reference: .map, .get, .join

发布评论

评论列表(0)

  1. 暂无评论