我從stackoverflow得到這個代碼,看起來像一個很不錯的「全選」複選框解決方案,任何想法爲什麼它失敗後第二次點擊?選擇所有複選框只能工作兩次
<table>
<tr>
<td>
<input type='checkbox' value='0' class=''>
</td>
<td>
<input type='checkbox' value='0' class=''>
</td>
<td>
<input type='checkbox' value='0' class=''>
</td>
<td width="100" align="right">
select all <input type='checkbox' value='0' class='selectall2'>
</td>
</tr>
</table>
$(document).ready(function() {
$(document).on("click", ".selectall2", function() {
$(this).closest('tr').find('input[type=checkbox]').attr('checked', this.checked);
});
});
AHHHH確定。謝謝 –
新學習對我來說也是如此:) –
非常感謝... –