gpt4 book ai didi

javascript - 使用 querySelectorAll()。方法返回的结果是否有序?

转载 作者:IT王子 更新时间:2023-10-29 03:20:30 24 4
gpt4 key购买 nike

我正在尝试制作适用于多个页面的 js 代码。我正在尝试使用 querySelectorAll() 从 DOM 中获取元素。

我需要对元素进行排序。为此,我可能会使用 xPath 或选择器(我更喜欢使用选择器,但 xPath 也可以)。问题是:
querySelectorAll() 返回的 NodeList 中的元素是否按照标签在 HTML 中出现的顺序排序?

注意:我想添加标签:querySelectorAll

最佳答案

返回的节点列表是有序的。一个快速测试证明了这一点:

document.querySelectorAll("body, head")[0]; //Returned [object HTMLHeadElement]

显然,<head>标记出现在 <body> 之前在 HTML 文档中。 NodeList 的第一个元素也是 <head>元素,即使选择器显示 body在`头之前。

来自 http://www.w3.org/TR/selectors-api/#queryselectorall :

The querySelectorAll() method on the NodeSelector interface must, when invoked, return a NodeList containing all of the matching Element nodes within the node’s subtrees, in document order. If there are no such nodes, the method must return an empty NodeList.

关于javascript - 使用 querySelectorAll()。方法返回的结果是否有序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8203770/

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