标签:checkbox his log 按钮 comm click logs span put
//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 his log 按钮 comm click logs span put
原文地址:http://www.cnblogs.com/SHMILYHP/p/6924420.html