只读
singleNodeValue
特性为
XPathResult
interface returns a
节点
value or
null
in case no node was matched of a result with
XPathResult.resultType
being
ANY_UNORDERED_NODE_TYPE
or
FIRST_ORDERED_NODE_TYPE
.
var value = result.singleNodeValue;
The return value is the
节点
value of the
XPathResult
返回通过
Document.evaluate()
.
若
XPathResult.resultType
不是
ANY_UNORDERED_NODE_TYPE
or
FIRST_ORDERED_NODE_TYPE
,
XPathException
类型
TYPE_ERR
is thrown.
The following example shows the use of the
singleNodeValue
特性。
<div>XPath example</div> <div>Tag name of the element having the text content 'XPath example': <output></output></div>
var xpath = "//*[text()='XPath example']";
var result = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
document.querySelector("output").textContent = result.singleNodeValue.localName;
| 规范 | 状态 | 注释 |
|---|---|---|
|
DOM (文档对象模型) 3 级 XPath 规范
The definition of 'XPathResult.singleNodeValue' in that specification. |
推荐 | 初始定义 |
No compatibility data found. Please contribute data for "api.XPathResult.singleNodeValue" (depth: 1) to the MDN 兼容性数据存储库 .
XPathResult
booleanValue
invalidIteratorState
numberValue
resultType
singleNodeValue
snapshotLength
stringValue