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

使用jQuery实现全选、全不选、 反选(button)

时间:2018-02-06 18:07:19      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:att   title   fun   51cto   rip   log   shadow   process   jquer   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="jquery-1.8.3.js"></script>
</head>
<body>
<button>全选</button>
<button>全不选</button>
<button>反选</button>
<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">
// 全选
$(‘button‘).eq(0).click(function(){
$(‘input‘).attr(‘checked‘,true);
});
// 全不选
$(‘button‘).eq(1).click(function(){
$(‘input‘).attr(‘checked‘,false);
});
// 反选
$(‘button‘).eq(2).click(function(){
$(‘input‘).each(function(){
this.checked=!this.checked;
});
});
</script>
</html>
技术分享图片

使用jQuery实现全选、全不选、 反选(button)

标签:att   title   fun   51cto   rip   log   shadow   process   jquer   

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

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