我有一个脚本,应该检查表中的所有复选框.它首次检查它们,之后它会取消选中它们.但是,当我尝试重新检查它们什么也没有发生.
$('#selectAll').click(function(e){ var table= $(e.target).closest('table'); $('td input:checkBox',table).attr('checked',e.target.checked); });
HTML:
<table> <tr> <th> <input type="checkBox" id="selectAll" /> </th> <th> hi! </th> </tr> <tr> <td> <input type="checkBox" id="1"/> </td> <td> hi! </td> </tr> <tr> <td> <input type="checkBox" id="2"/> </td> <td> hi! </td> </tr> </table>
这是一个行为的小提琴:
为什么点击一次后不起作用?