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实现全选,取消,反选的功能&实现左侧菜单

jquery实现全选取消反选加JavaScript三元运算(三种法法实现反选)

JQuery实现全选反选和取消功能

jquery实现全选 我全选后,取消全选,再点击全选,却选不上。我手动选上,然后点击取消全选,能够取消。

jQuery实现复选框全选/所有取消/反选/获得选择的值

JQuery实现的 checkbox 全选反选。