checkbox全选/取消全选
Posted 阿若蜜意
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了checkbox全选/取消全选相关的知识,希望对你有一定的参考价值。
//checkbox全选/取消全选 $(function() { $("#checkAll").click(function() { if(this.checked){ $("input[name=‘cbxCommodity‘]").prop("checked","checked"); }else{ $("input[name=‘cbxCommodity‘]").removeAttr("checked"); } }); var $cbx = $("input[name=‘cbxCommodity‘]"); $cbx.click(function(){ var num = $cbx.length;//总的checkbox数量 var num_checked = $("input[name=‘cbxCommodity‘]:checked").length;//选中的数量 if(num == num_checked){ $("input[name=‘checkAll‘]").prop("checked","checked"); }else{ $("input[name=‘checkAll‘]").removeAttr("checked"); } }); });
checkAll 是全选按钮
cbxCommodity 是单选的checkbox name
以上是关于checkbox全选/取消全选的主要内容,如果未能解决你的问题,请参考以下文章
js写全选,怎么取消一个checkbox的选中状态,让全选的checkbox选中状态取消