码迷,mamicode.com
首页 > Web开发 > 详细

原生js获取页面所有的checkbox

时间:2018-07-10 17:45:04      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:ini   put   width   auth   ble   OLE   cal   i++   div   

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

<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">
    <meta name="author" content="杨欣">
    <title>获取页面所有的checkbox</title>
</head>

<body>
    <input type="checkbox" name="box1" id="box1">box1
    <input type="checkbox" name="box2" id="box2">box2
    <input type="checkbox" name="box3" id="box3">box3
    <input type="checkbox" name="box4" id="box4">box4
    <input type="checkbox" name="box5" id="box5">box5
    <input type="checkbox" name="box6" id="box6">box6
    <script>
        var inputs = document.getElementsByTagName("input");
        var boxs = [];
        for (let i = 0; i < inputs.length; i++) {
            if (inputs[i].type == "checkbox") {
                boxs.push(inputs[i])
            }
        }
       console.log(boxs)
    </script>
</body>

</html>

  

原生js获取页面所有的checkbox

标签:ini   put   width   auth   ble   OLE   cal   i++   div   

原文地址:https://www.cnblogs.com/samsara-yx/p/9290051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!