Dom查询

作者: 虎三呀 | 来源:发表于2018-02-08 09:41 被阅读0次
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
            <script type="text/javascript">
                
                window.onload = function(){
                    
                    //获取body标签
                    //var body = document.getElementsByTagName("body")[0];
                    
                    /*
                     * 在document中有一个属性body,它保存的是body的引用
                     */
                    var body = document.body;
                    
                    /*
                     * document.documentElement保存的是html根标签
                     */
                    var html = document.documentElement;
                    
                    //console.log(html);
                    
                    /*
                     * document.all代表页面中所有的元素
                     */
                    var all = document.all;
                    
                    //console.log(all.length);
                    
                    /*for(var i=0 ; i<all.length ; i++){
                        console.log(all[i]);
                    }*/
                    
                    //all = document.getElementsByTagName("*");
                    //console.log(all.length);
                    
                    
                    /*
                     * 根据元素的class属性值查询一组元素节点对象
                     * getElementsByClassName()可以根据class属性值获取一组元素节点对象,
                     *  但是该方法不支持IE8及以下的浏览器
                     */
                    //var box1 = document.getElementsByClassName("box1");
                    //console.log(box1.length);
                    
                    //获取页面中的所有的div
                    //var divs = document.getElementsByTagName("div");
                    
                    //获取class为box1中的所有的div
                    //.box1 div
                    /*
                     * document.querySelector()
                     *  - 需要一个选择器的字符串作为参数,可以根据一个CSS选择器来查询一个元素节点对象
                     *  - 虽然IE8中没有getElementsByClassName()但是可以使用querySelector()代替
                     *  - 使用该方法总会返回唯一的一个元素,如果满足条件的元素有多个,那么它只会返回第一个
                     */
                    var div = document.querySelector(".box1 div");
                    
                    var box1 = document.querySelector(".box1")
                    
                    //console.log(div.innerHTML);
                    //console.log(box1.innerHTML);
                    
                    /*
                     * document.querySelectorAll()
                     *  - 该方法和querySelector()用法类似,不同的是它会将符合条件的元素封装到一个数组中返回
                     *  - 即使符合条件的元素只有一个,它也会返回数组
                     */
                    box1 = document.querySelectorAll(".box1");
                    box1 = document.querySelectorAll("#box2");
                    console.log(box1);
                    
                };
                
                
            </script>
        </head>
        <body>
            <div id="box2"></div>   
            <div class="box1">
                我是第一个box1    
                <div>我是box1中的div</div>
            </div>
            <div class="box1">
                <div>我是box1中的div</div>
            </div>
            <div class="box1">
                <div>我是box1中的div</div>
            </div>
            <div class="box1">
                <div>我是box1中的div</div>
            </div>
            
            <div></div>
        </body>
    </html>
    
    

    相关文章

      网友评论

          本文标题:Dom查询

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