全选反选作业

原创 2019-02-19 11:18:44 277
摘要:<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0&qu

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>全选</title>

    <style>

        .box{width: 120px;height: 250px;border: 1px solid #000;border-radius: 5px;padding: 5px 10px;margin:60px auto;}

        .box div{border-bottom: 1px solid #000;padding-bottom: 10px;margin-bottom: 8px;}

        .box input{margin: 8px;}

    </style>

</head>

<body>

    <div>

        <div>

            <input type="checkbox" id="checkall" onclick="checkall()"><label for="checkall">全选</label>

        </div>

        <input type="checkbox" name="item[]">选项1<br>

        <input type="checkbox" name="item[]">选项2<br>

        <input type="checkbox" name="item[]">选项3<br>

        <input type="checkbox" name="item[]">选项4<br>

        <input type="checkbox" name="item[]">选项5<br>

        <input type="checkbox" name="item[]">选项6<br>

    </div>

    <script type="text/javascript">

        function checkall(){

            var checkall,item;

            checkall=document.getElementById('checkall');

            item=document.getElementsByName("item[]");

            var i=0;

            while(i<item.length){

                if(checkall.checked){

                    item[i].checked=true;

                }else{

                    item[i].checked=false;

                }

                i++;

             }

        }

    </script>

</body>

</html>


批改老师:韦小宝批改时间:2019-02-19 11:40:16
老师总结:写的很不错 全选操作不管是在前台还是在后台都会经常使用到 这个功能一定要好好掌握哦!

发布手记

热门词条