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

jQuery实现checkbox的全选和反选

时间:2016-02-23 15:55:34      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

 

1  $(function () {
2 
3             if ($(".chk_all")) {
4 
5                 $(".chk_all").click(function () {
6                     $("input[checkname=‘choice‘]").prop("checked", $(this).prop("checked"));
7                 });
8             }
9         });

如何使用:

1  <table >
2      <tr>
3          <th><input type="checkbox" class="chk_all" /></th>
4     </tr>
5    <tr>
6        <td><input type="checkbox"  class="check" checkname="choice"  /></td>
7      </tr>

在遍历数据的时候给他指定值,提交后的就会是相应的选中项

 

技术分享

OK,结束。。。

jQuery实现checkbox的全选和反选

标签:

原文地址:http://www.cnblogs.com/Steven-shi/p/5209994.html

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