jquery实现全选,取消,反选
Posted startl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery实现全选,取消,反选相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>复选多选反选</title>
<meta charset="UTF-8">
<script src="jquery-3.4.1.js"></script>
</head>
<body>
<div>
<button onclick="selectAll()">全选</button>
<button onclick="cancel()">取消</button>
<button onclick="reverse()">反选</button>
</div>
<table border="1">
<tr>
<td><input type="checkbox"> </td>
<td>111</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>222</td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>333</td>
</tr>
</table>
<script>
function selectAll() {
$(‘table :checkbox‘).each(function () {
$(this).prop(‘checked‘,true);
})
}
function cancel(){
$(‘table :checkbox‘).each(function () {
$(this).prop(‘checked‘,false);
})
}
function reverse(){
$(‘table :checkbox‘).each(function () {
if($(this).prop(‘checked‘)){
$(this).prop(‘checked‘,false);
}else{
$(this).prop(‘checked‘,true);
}
})
}
</script>
</body>
</html>
以上是关于jquery实现全选,取消,反选的主要内容,如果未能解决你的问题,请参考以下文章
jquery实现全选取消反选加JavaScript三元运算(三种法法实现反选)