我正在开发的应用程序中有基于网格的动态表。
以下代码有效,但我需要添加一些功能:
当前脚本执行以下操作:
需要新功能:
这是jquery:
<script type="text/javascript">
$(document).ready(function(){
//this code works for select ALL, but not individual checkbox select/deselect;
$('td input:checkbox').click(function(e) {
var table = $(e.target).closest('table');
$('td input:checkbox', table).attr('checked', e.target.checked);
});
});
</script>
答案 0 :(得分:0)
好吧,经过长时间的考虑,我想到了这件事:
我在两个不同的复选框中添加了类,并在jquery中引用它们。
$('td input:checkbox.selectAll').click(function(e) {
var table = $(e.target).closest('table');
$('td input:checkbox.selectIndividual', table).attr('checked', e.target.checked);
});