jQuery实现表格隔行变色,以及全选按钮,全不选按钮,反选按钮

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            .oddTr {
                background-color: white;
            }
            
            .evenTr {
                background-color: #e1e1e1;
            }
            
            .curTr {
                background-color: yellow;
            }
        </style>
        <script src="js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
        <script type="text/javascript">
            $(function() {
                for(i = 1; i <= 10; i++) {
                    $("tbody").append("<tr><td><input type='checkbox' value='"+i+"'/></td><td>" + i + "</td><td>" + i * i + "</td></tr>")
                }
                //隔行变色
                $("tbody tr:even").addClass("evenTr");
                $("tbody tr:odd").addClass("oddTr");
                
                //滑动变色
                $("tbody tr").each(function() {
                    $(this).hover(function() {
                        $(this).addClass("curTr");
                    })
                    $(this).mouseout(function() {
                        $(this).removeClass("curTr")
                    })
                    $(this).dblclick(function() {
                        alert((this).find("td:eq(1)").text())
                    })
                })
                
                //全选
                $("#selestAll").click(function(){
                    $("input[type='checkbox']").prop("checked","checked")
                })
                
                //全不选
                $("#selestNone").click(function(){
                    $("input[type='checkbox']").prop("checked","")
                })
                
                //反选
                $("#selestOpposite").click(function(){
                    $("input[type='checkbox']").each(function(){
                        $(this).prop("checked",!$(this).prop("checked"))
                    })
                })
                
                
              
                
                
            })
            
            
            
        </script>
    </head>

    <body>
        <table border="" cellspacing="" cellpadding="">
            <tbody>
                <thead><tr>
                <th>Header</th>
                <th>Data</th>
                <th>Data</th>
            </tr></thead>
            </tbody>
    
        </table>
        
        <button id="selestAll">全选</button>
        <button id="selestNone">全不选</button >
        <button id="selestOpposite">反选</button>
     
    </body>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值