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.

booleanValueXPathResult インターフェイスのプロパティで、 XPathResult.resultTypeBOOLEAN_TYPE である結果の論理値を返します。

メモ: この機能はウェブワーカー内で利用可能です。

返値は Document.evaluate() が返す XPathResult の論理値です。

例外

TYPE_ERR

XPathResult.resultTypeBOOLEAN_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 GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
booleanValue

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support