码迷,mamicode.com
首页 > 其他好文 > 详细

获取DOM树节点对象

时间:2018-04-25 12:12:53      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:code   节点   type   log   nbsp   child   OLE   elements   span   

 1 // 获取dom树
 2 var getElement = (node, array) => {
 3     if (node && node.nodeType ===1){
 4         array.push(node.tagName)
 5     }
 6     for (let i=0;i<node.childNodes.length;i++){
 7         if(node.childNodes[i].nodeType ===1){
 8             getElement(node.childNodes[i], array)
 9         }
10     }
11 }
12 window.onload = ()=>{
13     let html = document.getElementsByTagName(‘html‘)[0]
14     let array = []
15     getElement(html, array)
16     console.log(array)
17 }

 

获取DOM树节点对象

标签:code   节点   type   log   nbsp   child   OLE   elements   span   

原文地址:https://www.cnblogs.com/StruggleStudyhard/p/8941989.html

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