首页 > 编程 > JavaScript > 正文

jQuery实现checkbox全选的方法

2019-11-20 12:18:59
字体:
来源:转载
供稿:网友

本文实例讲述了jQuery实现checkbox全选的方法。分享给大家供大家参考。具体分析如下:

通过checkbox 进行全选和取消全选的操作,如果通过toggle进行处理,则会出现checkbox无法显示对勾的问题。

使用click事件,根据checked属性进行判断即可。

示例:

$("#chkRreviewOffline").click(function(){   if(this.checked){     $('#review-offline .btn_checkbox input[type=checkbox]').each(function(index){       this.checked=true;     });   }else{     $('#review-offline .btn_checkbox input[type=checkbox]').each(function(index){       this.checked=false;     });   } }); $('#review-offline .btn_checkbox input[type=checkbox]').each(function(index){   $(this).click(function(){     if(this.checked){       //console.log('checked');     }else{       //console.log('not checked');       $("#chkRreviewOffline").get(0).checked=false;     }   }); });

其中,下面的each()方法用于当页面其它的checkbox有未选中状态,则全选状态取消。

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表