XPathResult: stringValue 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 stringValue
Eigenschaft der
XPathResult
Schnittstelle gibt den Zeichenfolgenwert eines Ergebnisses zurück, wenn
XPathResult.resultType
STRING_TYPE
ist.
Wert
Der Rückgabewert ist der Zeichenfolgenwert des XPathResult
, der von
Document.evaluate()
zurückgegeben wird.
Ausnahmen
TYPE_ERR
Falls XPathResult.resultType
nicht STRING_TYPE
ist, wird eine
XPathException
vom Typ TYPE_ERR
ausgelöst.
Beispiele
Das folgende Beispiel zeigt die Verwendung der stringValue
Eigenschaft.
HTML
<div>XPath example</div>
<div>Text content of the <div> above: <output></output></div>
JavaScript
const xpath = "//div/text()";
const result = document.evaluate(
xpath,
document,
null,
XPathResult.STRING_TYPE,
null,
);
document.querySelector("output").textContent = result.stringValue;
Ergebnis
Spezifikationen
Specification |
---|
DOM Standard # dom-xpathresult-stringvalue |
Browser-Kompatibilität
BCD tables only load in the browser