XPathResult: stringValue プロパティ
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
stringValue
は XPathResult
インターフェイスの読み取り専用プロパティで、 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;
結果
仕様書
Specification |
---|
DOM Standard # dom-xpathresult-stringvalue |
ブラウザーの互換性
BCD tables only load in the browser