js实现功能比较全面的全选和多选
程序员文章站
2023-11-03 20:03:28
效果图:
代码如下:
效果图:
代码如下:
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> </head> <body> <input type="checkbox" id="checkbox" value="1" onclick="check()" />水果 <br /> <input type="checkbox" value="${article.id}" name="box" class="item" />奶茶<br /> <input type="checkbox" value="${article.id}" name="box" class="item"/>香蕉<br /> <input type="checkbox" value="${article.id}" name="box" class="item"/>橘子<br /> <input type="checkbox" value="${article.id}" name="box" class="item"/>苹果<br /> <input type="checkbox" value="${article.id}" name="box" class="item"/>梨子<br /> <script type="text/javascript"> function quanxuan(){ var $checkbox = $(".item"); var $checked = $checkbox.filter(":checked"); if($checkbox.length == $checked.length){ $("#checkbox").prop("checked",true); }else{ $("#checkbox").prop("checked",false); } } $(function(){ $("#checkbox").on("change",function(){ var checked = $(this).prop("checked"); // true / false $(".item").prop("checked",checked); quanxuan(); }); $("body").on("change" , ".item",function(e){ quanxuan(); }); }); </script> </body> </html>
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
下一篇: ps仿制图章工具怎么用怎么定义仿制源点?