代码:
<div>
<input type='checkbox' lid='1'><label>checkbox1</label>
<input type='checkbox' lid='2'><label>checkbox1</label>
<input type='checkbox' lid='3'><label>checkbox1</label>
<input type='checkbox' lid='4'><label>checkbox1</label>
</div>
<script type='text/javascript'>
var arr = new Array("1", "2");
$('input[type=checkbox]').each(function(){
$.inArray($(this).attr('lid'), arr){
$(this).attr('checked','checked')
}
});
</script>
我正在尝试检查与数组中的项目具有相同“盖子”的所有复选框。现在,我的功能检查所有复选框。