XPathResult: snapshotLength-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: Dieses Feature ist verfügbar in Web Workers.

Die schreibgeschützte snapshotLength-Eigenschaft der XPathResult-Schnittstelle stellt die Anzahl der Knoten im Ergebnissnapshot dar.

Wert

Ein Integer-Wert, der die Anzahl der Knoten im Ergebnissnapshot darstellt.

Ausnahmen

TYPE_ERR

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

Beispiele

Das folgende Beispiel zeigt die Verwendung der snapshotLength-Eigenschaft.

HTML

html
<div>XPath example</div>
<div>Number of matched nodes: <output></output></div>

JavaScript

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

Ergebnis

Spezifikationen

Specification
DOM Standard
# dom-xpathresult-snapshotlength

Browser-Kompatibilität

BCD tables only load in the browser