所有我想知道的是,如何检查那些只是现在所有复选框正在检查的那些盒子....请帮助....
for ( var t = 0; t < contactsJsonArray.length; t++) {
for ( var j = 0; j < optionresponse.length; j++) {
if (optionresponse[j].contactid == contactsJsonArray[t].id) {
$(".checkHit").each(function() {
this.checked = true;
});
}
}
}
答案 0 :(得分:0)
不要为.checkHit使用每个循环,因为你对所有复选框都有一个相同的类而不是每个只使用索引,如下所示
please remove /*$(".checkHit").each(function() {
this.checked = true;
}); */
use the below line this will chekck single check box
$($('.checkHit')[j]).attr('checked','checked');
我希望这可以帮到你