• 前端学习笔记之多选框


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

    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>多选框</title>
        <style>
            * {
                margin: 0px;
                padding: 0px;
            }

            ul {
                list-style: none;
                display: flex;
            }
        </style>
    </head>

    <body>
        <form action="">
            <ul>
                <li>
                    西瓜<input type="checkbox">
                </li>
                <li>
                    苹果<input type="checkbox">
                </li>
                <li>
                    葡萄<input type="checkbox">
                </li>
                <li>
                    榴莲<input type="checkbox">
                </li>
            </ul>
            <input type="button" value="全选" id="all_btn">
            <input type="button" value="全不选" id="notall_btn">
            <input type="button" value="反选" id="invert">
        </form>
        <script>
            let all_btn = document.getElementById("all_btn");
            let notall_btn = document.getElementById("notall_btn");
            let invert = document.getElementById("invert");
            let check = document.querySelectorAll(`input[type="checkbox"]`);
            all_btn.onclick = function () {
                check.forEach((item) => {
                    item.checked = true;
                })
            };
            notall_btn.onclick = function () {
                check.forEach((item) => {
                    item.checked = false;
                })
            };
            invert.onclick = function () {
                check.forEach((item) => {
                    // item.checked ? item.checked = true : item.checked = false;
                    item.checked=!item.checked;
                })
            };
        </script>
    </body>

    </html>
  • 相关阅读:
    空格转换
    vuex学习
    css移动端适配方法
    数组以及数组常用方法
    21-canvas事件监听
    20-canvas之形变
    [转]session 跨域共享方案
    [转载] 从mysql,代码,服务器三个方面看mysql性能优化
    [计算机]Alan Perlis人物简介
    Python环境搭建及pip的使用
  • 原文地址:https://www.cnblogs.com/Yangyecool/p/13171695.html
Copyright © 2020-2023  润新知