首页 > 代码库 > jqure全选/取消

jqure全选/取消

平时我们会遇到全选/全取消,代码如下;

<script type="text/javascript">    $("#selectall").change(       function () {           var ischecked = $(this ).prop("checked");           $( ".msglists").each(function () {               $( this).find("input[type=checkbox]" ).prop("checked", ischecked);               $( "#selec").prop("checked" , ischecked);           });           renewtotalpriceandcount();                 });</script>

 

jqure全选/取消