控制全選和全不選的checkBox代碼如下:
<input type="checkbox" name="checkAll" id="checkAll" Onclick="JavaScipt:doCheckAll()">
doCheckAll() 函數如下:
- function doCheckAll() {
- if ($('#checkAll').attr('checked')) {
- $("input[name='productId']").attr('checked',true);
- } else {
- $("input[name='productId']").attr('checked',false);
- }
- }
其中,請你修改$("input[name='productId']")成你自己的代碼。