Element: hasAttributeNS() 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 hasAttributeNS()
Methode des Element
Interfaces gibt einen booleschen Wert zurück, der angibt, ob das aktuelle Element das angegebene Attribut mit dem angegebenen Namensraum besitzt.
Wenn Sie mit HTML-Dokumenten arbeiten und das angeforderte Attribut nicht als Teil eines bestimmten Namensraums angeben müssen, verwenden Sie stattdessen die hasAttribute()
Methode.
Syntax
js
hasAttributeNS(namespace,localName)
Parameter
Rückgabewert
Ein Boolescher Wert.
Beispiele
js
// Check that the attribute exists before you set a value
const d = document.getElementById("div1");
if (
d.hasAttributeNS("http://www.mozilla.org/ns/specialspace/", "special-align")
) {
d.setAttribute("align", "center");
}
Spezifikationen
Specification |
---|
DOM Standard # ref-for-dom-element-hasattributens① |
Browser-Kompatibilität
BCD tables only load in the browser