XPathResult: booleanValue プロパティ
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.
booleanValue
は XPathResult
インターフェイスのプロパティで、 XPathResult.resultType
が BOOLEAN_TYPE
である結果の論理値を返します。
メモ: この機能はウェブワーカー内で利用可能です。
値
返値は Document.evaluate()
が返す XPathResult
の論理値です。
例外
TYPE_ERR
XPathResult.resultType
が BOOLEAN_TYPE
でない場合、 TYPE_ERR
型の XPathException
が発生します。
例
次の例では booleanValue
プロパティを使用しています。
HTML
html
<div>XPath example</div>
<p>Text is 'XPath example': <output></output></p>
JavaScript
js
const xpath = "//div/text() = 'XPath example'";
const result = document.evaluate(
xpath,
document,
null,
XPathResult.BOOLEAN_TYPE,
null,
);
document.querySelector("output").textContent = result.booleanValue;
結果
仕様書
Specification |
---|
DOM Standard # dom-xpathresult-booleanvalue |
ブラウザーの互換性
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
booleanValue |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.