遍历子元素

Posted hanxiaoer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历子元素相关的知识,希望对你有一定的参考价值。

var iterator = document.createNodeIterator(document.body, NodeFilter.SHOW_ELEMENT, null, false)
var node = iterator.nextNode()
while (node !== null) {
  console.log(node.tagName)
  node = iterator.nextNode()
}

 或:

var iterator = document.createTreeWalker(document.body, NodeFilter.SHOW_ELEMENT, null, false)
var node = iterator.firstChild()
while (node !== null) {
  console.log(node.tagName)
  node = iterator.nextSibling()
}

  

以上是关于遍历子元素的主要内容,如果未能解决你的问题,请参考以下文章

jquery中的$的特殊用法

NC41 最长无重复子数组/NC133链表的奇偶重排/NC116把数字翻译成字符串/NC135 股票交易的最大收益/NC126换钱的最少货币数/NC45实现二叉树先序,中序和后序遍历(递归)(代码片段

boost property_tree:遍历重复子元素中重复子元素的属性

如何使用 jQuery 遍历 div 的子元素?

React遍历组件元素的子元素

遍历子元素