js---Realize the choice of form

js-realize the selection form information

Show results:
Insert picture description here

Code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>表格全选</title>
    <style>
        table{
    
    
            border: 1px solid;
            width: 500px;
            margin-left: 30%;
        }

        td,th{
    
    
            text-align: center;
            border: 1px solid;
        }
        div{
    
    
            margin-top: 10px;
            margin-left: 30%;
        }
        .over{
    
    
            background-color: pink;
        }
        .out{
    
    
            background-color: white;
        }
        /*伪类*/
        tr:hover{
    
    
            background-color: #ffad2d;
        }
        /*lv ha*/
        a:link{
    
    
            color: #665bff;
        }
        a:visited{
    
    
            color: #57ff9f;
        }
        a:hover{
    
    
            color: #ffe96e;
        }
        a:active{
    
    
            color: #edff27;
        }
    </style>
</head>
<body>
<table>
    <h1><a href="2.玩转风车.html">测试伪类属性</a></h1>
    <caption>学生信息表</caption>
    <tr>
        <th><input type="checkbox" name="cb" id="firstcb"></th>
        <th>编号</th>
        <th>姓名</th>
        <th>性别</th>
        <th>操作</th>
    </tr>
    <tr>
        <td><input type="checkbox" name="cb"></td>
        <td>1</td>
        <td>令狐冲</td>
        <td></td>
        <td><a href="javascript:void(0);">删除</a></td>
    </tr>
    <tr>
        <td><input type="checkbox" name="cb"></td>
        <td>2</td>
        <td>任我行</td>
        <td></td>
        <td><a href="javascript:void(0);">删除</a></td>
    </tr>
    <tr>
        <td><input type="checkbox" name="cb"></td>
        <td>3</td>
        <td>岳不群</td>
        <td>?</td>
        <td><a href="javascript:void(0);">删除</a></td>
    </tr>
</table>
<div>
    <input type="button" id="selectAll" value="全选">
    <input type="button" id="unSelectAll" value="全不选">
    <input type="button" id="selectRev" value="反选">
</div>
</body>
<script>
        document.getElementById("selectAll").onclick = function(){
    
    
            var cbs = document.getElementsByName("cb");
            for (var i = 0; i < cbs.length; i++) {
    
    
                cbs[i].checked = true;
            }
        }
        document.getElementById("unSelectAll").onclick = function(){
    
    
            var cbs = document.getElementsByName("cb");
            for (var i = 0; i < cbs.length; i++) {
    
    
                cbs[i].checked = false;
            }
        }
        document.getElementById("selectRev").onclick = function(){
    
    
            var cbs = document.getElementsByName("cb");
            for (var i = 0; i < cbs.length; i++) {
    
    
                cbs[i].checked = !cbs[i].checked
            }
        }
        document.getElementById("firstcb").onclick = function(){
    
    
            var cbs = document.getElementsByName("cb");
            var firstcb = document.getElementById("firstcb");
            for (var i = 0; i < cbs.length; i++) {
    
    
                cbs[i].checked = firstcb.checked;
            }
        }
        var trs = document.getElementsByTagName("tr");
        for (var i = 0; i < trs.length; i++) {
    
    
            trs[i].onmouseover = function(){
    
    
                this.className = "over"
            }
            trs[i].onmouseout = function(){
    
    
                this.className = "out"
            }
        }
</script>
</html>

Guess you like

Origin blog.csdn.net/weixin_44889894/article/details/110881645