NamedNodeMap: getNamedItemNS()-Methode
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.
Die getNamedItemNS()
-Methode des NamedNodeMap
-Interfaces gibt das Attr
zurück, das dem angegebenen lokalen Namen im angegebenen Namensraum entspricht, oder null
, wenn kein entsprechendes Attribut vorhanden ist.
Syntax
js
getNamedItemNS(namespace, localName)
Parameter
Rückgabewert
Ein Attr
, das dem angegebenen Namensraum und lokalen Namen in den Parametern entspricht, oder null
, wenn kein solches Attribut gefunden wurde.
Beispiel
js
const parser = new DOMParser();
const xmlString =
'<warning ob:one="test" xmlns:ob="http://www.example.com/ob">Beware!</warning>';
const doc = parser.parseFromString(xmlString, "application/xml");
const pre = document.querySelector("pre");
const warning = doc.querySelector("warning");
const value = warning.attributes.getNamedItemNS(
"http://www.example.com/ob",
"one",
).value;
pre.textContent = `The 'ob:one' attribute contains: ${value}.`;
Spezifikationen
Specification |
---|
DOM # dom-namednodemap-getnameditemns |
Browser-Kompatibilität
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
getNamedItemNS |
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.