我有很多复选框,如下所示,
<li><input type="checkbox" name="areaofinterest" value="home_coo" id="home_coo" class="Checkbox" > Cooking</li>
<li><input type="checkbox" name="areaofinterest" value="home_cra" id="home_cra" class="Checkbox"> Crafts</li>
<li><input type="checkbox" name="areaofinterest" value="home_dec" id="home_dec" class="Checkbox"> Decorating</li>
<li><input type="checkbox" name="areaofinterest" value="home_ent" id="home_ent" class="Checkbox"> Entertaining</li>
<li><input type="checkbox" name="areaofinterest" value="home_gar" id="home_gar" class="Checkbox"> Gardening</li>
<li><input type="checkbox" name="areaofinterest" value="home_hom" id="home_hom" class="Checkbox"> Home Improvement</li>
<li><input type="checkbox" name="areaofinterest" value="home_mar" id="home_mar" class="Checkbox"> Marriage</li>
<li><input type="checkbox" name="areaofinterest" value="home_par" id="home_par" class="Checkbox"> Parenting</li>
<li><input type="checkbox" name="areaofinterest" value="home_pet" id="home_pet" class="Checkbox" > Pets</li>
<li><input type="checkbox" name="areaofinterest" value="home_ret" id="home_ret" class="Checkbox"> Retirement</li>
如何使用jQuery将选中的值和输出作为感兴趣的区域=“home coo,home_mar,home_pet”?
非常感谢。
答案 0 :(得分:104)
使用.map()
功能:
$('.Checkbox:checked').map(function() {return this.value;}).get().join(',')
打破这一点:
$('.Checkbox:checked')
选中已选中的复选框。
.map(function() {return this.value;})
创建一个jQuery对象,该对象包含一个包含已选中复选框值的数组。
.get()
返回实际数组。
.join(',');
将数组的所有元素连接成一个字符串,用逗号分隔。
答案 1 :(得分:3)
var areaofinterest = '';
$('[name="areaofinterest"]').each(function(i,e) {
var comma = areaofinterest.length===0?'':',';
areaofinterest += (comma+e.value);
});
仅获取复选框值:
var areaofinterest = '';
$('[name="areaofinterest"]').each(function(i,e) {
if ($(e).is(':checked')) {
var comma = areaofinterest.length===0?'':',';
areaofinterest += (comma+e.value);
}
});
你也可以这样做:
var areaofinterest = [];
$('[name="areaofinterest"]:checked').each(function(i,e) {
areaofinterest.push(e.value);
});
areaofinterest = areaofinterest.join(',');
还有很多其他方法可以做到这一点吗?
答案 2 :(得分:1)
var mode = [];
jQuery("input[name='mode[]']:checked").each(function(i) {
mode.push($(this).val());
});
答案 3 :(得分:0)
var values = "";
$("checkbox[name=areaofinterest]").each(function() {
values += $(this).val() + ",";
});
values = values.substring(0, values.length - 2);
答案 4 :(得分:0)
尝试这样的事情:
var areaofinterest= "";
$("input[type=\"checkbox\"]").each(function() {
if ($(this).attr("checked")) {
if (areaofinterest !== "") areaofinterest += ",";
areaofinterest += $(this).value();
}
});
答案 5 :(得分:0)
或者您使用可以使用如下所示的数组
var checkBoxArray = new Array();
var areaofinterest = '';
$(':checkbox:checked').each(function(i){
checkBoxArray .push($(this).attr("value"));
});
if (checkBoxArray .length == 0) {
} else {
while (checkBoxArray .length != 0) {
if (checkBoxArray .length == 1) {
areaofinterest += checkBoxArray .pop();
} else {
areaofinterest += (checkBoxArray .pop() + ",");
}
}
}
console.log(areaofinterest);
虽然你会以相反的顺序得到String。
答案 6 :(得分:0)
使用jQuery获取多个复选框的值并将其输出为逗号分隔的字符串。
var programming = $("input[name='programming']:checked").map(function() {
return this.value;
}).get().join(', ');
alert("My favourite programming languages are: " + programming);
OR
var favProgramming = [];
$.each($("input[name='programming']:checked"), function(){
favProgramming .push($(this).val());
});
alert("My favourite programming languages are: " + favProgramming);