首页 > 编程 > JavaScript > 正文

js实现功能比较全面的全选和多选

2019-11-19 17:20:41
字体:
来源:转载
供稿:网友

效果图:

代码如下:

<!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>

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持武林网!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表