jQuery实现多选框的全选

jQuery下载

----------cnpm i jquery

引入jquery.js

html文件

        
_____________________________________________________ ###js文件 ###//点击全选,判断全选按钮checked属性,根据条件判断执行全选或全不选 ```var $chk = $("#chk"); $("#chk").click(function(){ if($chk.prop("checked") == true){ $("form :checkbox").prop("checked",true) } else { $("form :checkbox").prop("checked",false) } }) ###//表单中选中的框和所有多选框长度相等,全选为真,否则为假 ``` $("form :checkbox").click(function(){ if($("form :checked").length == $("form :checkbox").length){ $chk.prop("checked",true) } else { $chk.prop("checked",false) } }) ![效果图.png](https://upload-images.jianshu.io/upload_images/11391340-68462045037f480e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

你可能感兴趣的:(jQuery实现多选框的全选)