jQuery实现复选框的全选和反选
更新时间:2017年02月02日 13:40:43 作者:小小赵老汉
本文主要分享了使用jQuery实现复选框的全选和反选的示例代码。具有很好的参考价值,下面跟着小编一起来看下吧
话不多说,请看代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<form>
<label for="apple">苹果</label>
<input type="checkbox" name="apple">
<label for="banana">香蕉</label>
<input type="checkbox" name="banana">
<label for="orange">橘子</label>
<input type="checkbox" name="orange">
<input type="button" value="全选" onclick="allPick()">
<input type="button" value="全不选" onclick="unAllPick()">
<input type="button" value="反转" onclick="inverserPick()">
</form>
<script src="http://cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script>
<script>
// 全选
function allPick() {
$("[type=checkbox]:checkbox").each(function () {
this.checked = true;
})
}
// 全不选
function unAllPick() {
$("[type=checkbox]:checkbox").each(function () {
this.checked = false;
})
}
// 反转
function inverserPick() {
$("[type=checkbox]:checkbox").each(function () {
this.checked = !this.checked;
})
}
</script>
</body>
</html>
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!
相关文章
使用BootStrap和Metroui设计的metro风格微网站或手机app界面
今天使用bootstrap和metroui设计了一个metro风格的移动app或者微信微网站的界面,非常不错具有参考借鉴价值,感兴趣的朋友可以参考下2016-10-10


最新评论