我的页面中有一个表格,其结构如下:
...<td class="ind"><input type="checkbox" .../> ... </td>
<td><input type="checkbox" .../> ... </td>
<td><input type="checkbox" .../> ... </td>
<td>
对于包含在一个类中的每个复选框ind
,我想将该复选框设置为其不确定状态,如此处所示
我怎样才能让这件作品工作?
$(document).ready(function() {
var checkboxes = $(".ind").find(':checkbox');
for (var i = 0; i < $(checkboxes).length; i++) {
checkboxes[i].prop("indeterminate", true);
}
});