美文网首页
新选择器

新选择器

作者: 暴走的金坤酸奶味 | 来源:发表于2018-09-18 22:49 被阅读0次

    1、document.querySlector()
    2、document.querySlectorAll()

    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>新增选择器</title>
        <script type="text/javascript">
            window.onload = function(){
                var oDiv = document.querySelector('#div1');
                alert(oDiv);//弹出[object HTMLDivElement],表示选择了该Div
    
                //如果要选择多个元素用querySelectorAll
                var aLi = document.querySelectorAll('.list li');
                alert(aLi.length);//8
            }
        </script>
    </head>
    <body>
        <div id="div1">这是一个div元素</div>
        <ul class="list">
            <li>1</li>
            <li>2</li>
            <li>3</li>
            <li>4</li>
            <li>5</li>
            <li>6</li>
            <li>7</li>
            <li>8</li>
        </ul>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:新选择器

          本文链接:https://www.haomeiwen.com/subject/vtovnftx.html