Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

全选 #178

Open
Sunny-117 opened this issue Nov 3, 2022 · 1 comment
Open

全选 #178

Sunny-117 opened this issue Nov 3, 2022 · 1 comment

Comments

@Sunny-117
Copy link
Owner

No description provided.

@bearki99
Copy link

bearki99 commented Aug 3, 2023

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body>
    <input type="checkbox" id="all" /> 全选
    <br />
    <input type="checkbox" class="item" /> 选项1
    <input type="checkbox" class="item" /> 选项2
    <input type="checkbox" class="item" /> 选项3

    <script>
      const all = document.querySelector("#all");
      const items = document.querySelectorAll(".item");
      all.addEventListener("click", function () {
        for (let i = 0; i < items.length; i++) {
          items[i].checked = all.checked;
        }
      });
    </script>
  </body>
</html>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants