只读
snapshotLength
特性为
XPathResult
interface represents the number of nodes in the result snapshot.
var snapshotLength = result.snapshotLength;
An integer value representing the number of nodes in the result snapshot.
若
XPathResult.resultType
不是
UNORDERED_NODE_SNAPSHOT_TYPE
or
ORDERED_NODE_SNAPSHOT_TYPE
,
XPathException
类型
TYPE_ERR
is thrown.
The following example shows the use of the
snapshotLength
特性。
<div>XPath example</div> <div>Number of matched nodes: <output></output></div>
var xpath = "//div";
var result = document.evaluate(xpath, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
document.querySelector("output").textContent = result.snapshotLength;
| 规范 | 状态 | 注释 |
|---|---|---|
|
DOM (文档对象模型) 3 级 XPath 规范
The definition of 'XPathResult.snapshotLength' in that specification. |
推荐 | 初始定义 |
No compatibility data found. Please contribute data for "api.XPathResult.snapshotLength" (depth: 1) to the MDN 兼容性数据存储库 .
XPathResult
booleanValue
invalidIteratorState
numberValue
resultType
singleNodeValue
snapshotLength
stringValue