XPathResult:stringValue 属性
注意:此功能在Web Workers中可用。
XPathResult
接口的只读stringValue
属性返回结果的字符串值,其中XPathResult.resultType
为STRING_TYPE
。
值
返回值是Document.evaluate()
返回的XPathResult
的字符串值。
异常
TYPE_ERR
如果XPathResult.resultType
不是STRING_TYPE
,则会抛出一个类型为TYPE_ERR
的XPathException
。
示例
以下示例显示了stringValue
属性的使用。
HTML
html
<div>XPath example</div>
<div>Text content of the <div> above: <output></output></div>
JavaScript
js
const xpath = "//div/text()";
const result = document.evaluate(
xpath,
document,
null,
XPathResult.STRING_TYPE,
null,
);
document.querySelector("output").textContent = result.stringValue;
结果
规范
规范 |
---|
DOM 标准 # dom-xpathresult-stringvalue |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。