- $('#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');
- }
- }
posted @
2018-04-19 10:14
雨夜_飞逃
阅读(
323)
评论()
收藏
举报