NamedNodeMap: Länge-Eigenschaft

Die schreibgeschützte length-Eigenschaft der NamedNodeMap-Schnittstelle ist die Anzahl der im Map gespeicherten Objekte.

Wert

Eine Zahl, die die Anzahl der Objekte im Map darstellt.

Beispiel

html
<pre zero="test" one="test" two="test"></pre>
js
const pre = document.querySelector("pre");
const attrMap = pre.attributes;
pre.textContent = `The 'test' attribute contains ${attrMap.length} attributes.\n`;

Spezifikationen

Specification
DOM Standard
# dom-namednodemap-length

Browser-Kompatibilität

BCD tables only load in the browser