XPathResult: snapshotLength 属性
注意: 此功能在 Web 工作线程 中可用。
只读 snapshotLength
属性是 XPathResult
接口的一部分,它表示结果快照中的节点数量。
值
表示结果快照中节点数量的整数值。
异常
TYPE_ERR
如果 XPathResult.resultType
不是 UNORDERED_NODE_SNAPSHOT_TYPE
或 ORDERED_NODE_SNAPSHOT_TYPE
,则会抛出一个类型为 TYPE_ERR
的 XPathException
。
示例
以下示例演示了 snapshotLength
属性的使用。
HTML
html
<div>XPath example</div>
<div>Number of matched nodes: <output></output></div>
JavaScript
js
const xpath = "//div";
const result = document.evaluate(
xpath,
document,
null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null,
);
document.querySelector("output").textContent = result.snapshotLength;
结果
规范
规范 |
---|
DOM 标准 # dom-xpathresult-snapshotlength |
浏览器兼容性
BCD 表仅在启用 JavaScript 的浏览器中加载。