码迷,mamicode.com
首页 > Web开发 > 详细

利用jQuery实现全选、全不选、反选(checkBox)

时间:2018-02-06 21:38:57      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:type   实现   checked   ext   javascrip   utf-8   each   click   asc   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jquery-1.8.3.js"></script>
</head>
<body>
<input type="checkBox" class="all">全选/全不选
<br>
<input type="checkBox" class="un">反选
<hr>
<div id="main">
<input type="checkBox">篮球
<br>
<input type="checkBox">羽毛球
<br>
<input type="checkBox">乒乓球
<br>
<input type="checkBox">足球
<br>
<input type="checkBox">橄榄球
<br>
<input type="checkBox">棒球
</div>
</body>
<script type="text/javascript">
// 全选和全不选举
$(‘.all‘).click(function(){
$(‘#main input‘).attr(‘checked‘,this.checked);
});
// 反选
$(‘.un‘).click(function(){
$(‘#main input‘).each(function(){
this.checked=!this.checked; // 进行反选
});

});
</script>
</html>

利用jQuery实现全选、全不选、反选(checkBox)

标签:type   实现   checked   ext   javascrip   utf-8   each   click   asc   

原文地址:http://blog.51cto.com/11871779/2069578

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