我通过使用以下功能动态检查chekboxes。
$('input[type="checkbox"]').each(function() {
$(this).attr('checked', true);
});
我想将整个选中的复选框存储在字符串中。
答案 0 :(得分:1)
var ids =''
$('input[type="checkbox"]').each(function() {
if($(this).attr('checked')=='checked'){
ids += $(this).attr(id) + ',';
}
});
您也可以用逗号分割ID并获取ID数组
var ids = ids.split(',')