gpt4 book ai didi

javascript - 按顺序遍历 DOM 叶子

转载 作者:行者123 更新时间:2023-12-02 19:26:38 27 4
gpt4 key购买 nike

我正在寻找遍历特定元素的叶子的最有效方法。例如:

<div id='root'>
<ul>
<li>One</li>
<li>Two</li>
</ul>
<div>
<p>Paragraph</p>
<div>
<b>
<i>Text</i>
</b>
<u>Underline</u>
</div>
</div>
</div>

我应该得到一个数组:[<li>One</li>, <li>Two</li>, <p>Paragraph</p>, <i>Text</i>, <u>Underline</u>] 。理想情况下应该是这个顺序。

最佳答案

简单的“旧”Javascript

(function() {
var nodes = document.querySelectorAll("#root *"),
result;

result = [].slice.apply(nodes).filter(function(i) {
return i.childNodes.length === 1 && i.firstChild.nodeType === 3;
})

console.log(result);
}())​

example

关于javascript - 按顺序遍历 DOM 叶子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11975369/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com