码迷,mamicode.com
首页 > Web开发 > 详细

jquery实现全选、全消、反选功能

时间:2017-06-14 21:07:54      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:实现   按钮   htm   cli   反选   name   使用   put   this   

HTML代码:  

  

<input type="checkbox" name="checkbox" class="A"  />

使用按钮来实现全选、全消、反选

<button  id="checkAll">全选</button  >
<button   id="removeAll">全消</button  >
<button   id="reverse">反选</button  >

  jquery代码要求:1.项目中必须引入jquery,2.必须在<script></script>之中写

      // 全选
      $("#checkAll").click(function() {
          $(".A").prop(‘checked‘,true);
      });
      // 全消
      $("#removeAll").click(function() {
          $(".A").prop(‘checked‘,false);
      });

      // 反选
      $("#reverse").click(function(){
          $(".A").each(function(){
              $(this).prop(‘checked‘,!$(this).prop(‘checked‘));
          })
      });

  

  

jquery实现全选、全消、反选功能

标签:实现   按钮   htm   cli   反选   name   使用   put   this   

原文地址:http://www.cnblogs.com/Worssmagee1002/p/6734902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!