用jQuery写全选反选案例

该博客介绍了如何使用HTML、CSS和JavaScript实现表格数据展示,并添加了全选和反选功能。通过点击全选按钮,可以一次性选中所有表格行;点击反选按钮,则会切换已选中的状态。此外,当用户手动勾选或取消某一行的复选框时,全选按钮的状态也会自动更新以反映当前选中状态。
摘要由CSDN通过智能技术生成

效果图:

案例代码:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        table {
            width: 100%;
        }
        
        th,
        td {
            border: 1px solid black;
            text-align: center;
        }
    </style>
</head>

<body>
    <table>
        <thead>
            <th><input type="checkbox" name="allSel" id="allSel"></th>
            <th>学号</th>
            <th>姓名</th>
            <th>班级</th>
        </thead>
        <tbody>
            <tr>
                <td><input type="checkbox" class="selItem"></td>
                <td>01</td>
                <td>小张</td>
                <td>1班</td>
            </tr>
            <tr>
                <td><input type="checkbox" class="selItem"></td>
                <td>02</td>
                <td>小李</td>
                <td>2班</td>
            </tr>
            <tr>
                <td><input type="checkbox" class="selItem"></td>
                <td>03</td>
                <td>小王</td>
                <td>1班</td>
            </tr>
        </tbody>
        <button id="btnFan">反选</button>
        <button id="btnAll">全选</button>
    </table>

    <script src="./js/jquery-3.6.0.js"></script>
    <script type="text/javascript">
        (function($) {
            $("#allSel").click(function() {
                    //获取全选框的状态
                    let nowState = $("#allSel").prop("checked");
                    //改变其他选项的状态
                    $(".selItem").prop("checked", nowState);
                })
                //判断所有的行中,checkbox的状态,是否为全部选中
            function checkAllChecked() {
                if ($(".selItem:not(:checked)").length == 0) {
                    $("#allSel").prop("checked", true);
                } else {
                    $("#allSel").prop("checked", false);
                }
            }
            //给checkbox添加点击事件
            $(".selItem").click(function() {
                    checkAllChecked();
                })
                //添加反选的点击事件
            $("#btnFan").click(function() {
                let allCheckBox = $(".selItem");
                for (let i = 0; i < allCheckBox.length; i++) {
                    allCheckBox[i].checked = !allCheckBox[i].checked;
                }
                checkAllChecked();
            })

            //添加全选的点击事件
            $("#btnAll").click(function() {
                $(".selItem").prop("checked", true);
                $("#allSel").prop("checked", true);

            })
        })(jQuery);
    </script>
</body>

</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值