码迷,mamicode.com
首页 > 其他好文 > 详细

checkbox实现全选全不选

时间:2016-09-30 11:45:18      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:

1.jQuery实现checkbox全选全不选

<!DOCTYPE html>
<head runat="server">
<title>jQuery实现CheckBox全选、全不选</title>
<meta charset="utf-8">
<script src="jquery-3.1.1.min.js"></script> 
<script type="text/javascript">
$(function() {
$("#checkAll").click(function() {
$(input[name="subBox"]).attr("checked",this.checked); 
});
var $subBox = $("input[name=‘subBox‘]");
$subBox.click(function(){
$("#checkAll").attr("checked",$subBox.length == $("input[name=‘subBox‘]:checked").length ? true : false);
});
});
</script>

</head>
<body>
<div>
<input id="checkAll" type="checkbox" />全选
<input name="subBox" type="checkbox" />项1
<input name="subBox" type="checkbox" />项2
<input name="subBox" type="checkbox" />项3
<input name="subBox" type="checkbox" />项4
</div>
</body>
</html>

 

checkbox实现全选全不选

标签:

原文地址:http://www.cnblogs.com/Gabriel-Wei/p/5923001.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!