- $('#checkAll').click(function(){
- if(this.checked) {
- $("input[type=checkbox][name=ckjsmc]").each(function(){
- $(this).attr('checked', 'true');
- });
- } else {
- $("input[type=checkbox][name=ckjsmc]").each(function(){
- $(this).removeAttr('checked');
- });
- }
- });
- function checkOne(){
- var count = 0;
- $("input[type=checkbox][name=ckjsmc]").each(function(){
- if($(this).attr('checked') != 'checked'){// 判断一组复选框是否有未选中的
- count+=1;
- }
- });
- if(count == 0) { // 如果没有未选中的那么全选框被选中
- $('#checkAll').attr('checked', 'true');
- } else {
- $('#checkAll').removeAttr('checked');
- }
- }