XPathResult: `numberValue`-Eigenschaft

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.

Hinweis: Diese Funktion ist in Web Workers verfügbar.

Die schreibgeschützte numberValue-Eigenschaft des XPathResult-Interfaces gibt den numerischen Wert eines Ergebnisses zurück, dessen XPathResult.resultType NUMBER_TYPE ist.

Wert

Der Rückgabewert ist der numerische Wert des von Document.evaluate() zurückgegebenen XPathResult.

Ausnahmen

TYPE_ERR

Falls XPathResult.resultType nicht NUMBER_TYPE ist, wird eine XPathException vom Typ TYPE_ERR ausgelöst.

Beispiele

Das folgende Beispiel zeigt die Verwendung der numberValue-Eigenschaft.

HTML

html
<div>XPath example</div>
<div>Number of &lt;div&gt;s: <output></output></div>

JavaScript

js
const xpath = "count(//div)";
const result = document.evaluate(
  xpath,
  document,
  null,
  XPathResult.NUMBER_TYPE,
  null,
);
document.querySelector("output").textContent = result.numberValue;

Ergebnis

Spezifikationen

Specification
DOM
# dom-xpathresult-numbervalue

Browser-Kompatibilität

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
numberValue

Legend

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

Full support
Full support