返回全选功能的实现...登陆

全选功能的实现

阿涛2019-06-29 14:19:36205

全选案例代码:

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>全选</title>
    <style>
        #box {
            width: 100px;

            border-radius: 10px;
            border: 1px solid red;
            text-align: center;
            padding-bottom: 10px;
        }

        #box div {
            border-bottom: 1px solid #CCCCCC;
            height: 30px;
            line-height: 30px;
            text-align: center;
            margin-bottom: 10px;
        }
    </style>
</head>
<body>
<div id="box">
    <div>
        <input type="checkbox" id="checkall" onclick="checkall()"><label for="checkall">全选</label>
    </div>
    <input type="checkbox" class="item[]">选项一<br>
    <input type="checkbox" class="item[]">选项二<br>
    <input type="checkbox" class="item[]">选项三<br>
    <input type="checkbox" class="item[]">选项四<br>
    <input type="checkbox" class="item[]">选项五<br>
    <input type="checkbox" class="item[]">选项六<br>

</div>

<script>
    function checkall() {

        var all = document.getElementById('checkall');

        var item = document.getElementsByClassName('item[]');

        for(var i = 0;i<item.length;i++){
            if(all.checked){
                item[i].checked = true;

            }else {
                item[i].checked = false;
            }
        }
    }
</script>
</body>
</html>

运行截图

QQ截图20190629141421.png

总结:

熟悉了函数的调用过程,函数内的循环,判断流程也能掌握其原理。

每一步运行的过程基本掌握。

最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送