jQuery实现checkbox的全选和反选

时间:2021-06-02 21:48:00
  $(function () {

             if ($(".chk_all")) {

                 $(".chk_all").click(function () {
$("input[checkname='choice']").prop("checked", $(this).prop("checked"));
});
}
});

如何使用:

  <table >
<tr>
<th><input type="checkbox" class="chk_all" /></th>
   </tr>
   <tr>
   <td><input type="checkbox" class="check" checkname="choice" /></td>
</tr>

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

jQuery实现checkbox的全选和反选

OK,结束。。。