jQuery--全选反选取消

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery--全选反选取消相关的知识,希望对你有一定的参考价值。

主要知识点:

prop()--主要检查和设置checked

代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <input type="button" value="全选" onclick="CheckAll()"/>
    <input type="button" value="反选" onclick="CheckReverse()"/>
    <input type="button" value="取消" onclick="CheckCancel()"/>
 
    <table border="1">
        <thead></thead>
        <tbody id="tb1">
            <tr>
                <td><input type="checkbox" /></td>
                <td>11</td>
            </tr>
            <tr>
                <td><input type="checkbox" /></td>
                <td>22</td>
            </tr>
            <tr>
                <td><input type="checkbox" /></td>
                <td>33</td>
            </tr>
        </tbody>
    </table>
    <script type="text/javascript" src="jquery-2.1.4.min.js"></script>
    <script type="text/javascript">
        function CheckAll(){
            $(‘#tb1‘).find(‘:checkbox‘).prop(‘checked‘,true);
        }
        function CheckReverse(){
            $(‘#tb1‘).find(‘:checkbox‘).each(function(){
                //$(this)=每一个复选框
                //$(this).prop(‘checked‘)如果选中,true,否则false
                if ($(this).prop(‘checked‘)){
                    $(this).prop(‘checked‘,false);
                }else{
                    $(this).prop(‘checked‘,true);
                }
            });
        }
        function CheckCancel(){
            $(‘#tb1‘).find(‘:checkbox‘).prop(‘checked‘,false);
        }
    </script>
</body>
</html>
效果:?

技术分享?


























以上是关于jQuery--全选反选取消的主要内容,如果未能解决你的问题,请参考以下文章

js全选,反选,全不选

JQuery实现的 checkbox 全选反选。

jQuery复选框 全选反选取消&三元运算

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

angularjs 全选反选

jquery全选反选全不选代码