NamedNodeMap.length
length
は NamedNodeMap
インターフェイスの読み取り専用プロパティで、このマップに格納されているオブジェクトの数を示します。
値
このマップにあるオブジェクトの数を示す数値です。
例
html
<pre zero="test" one="test" two="test"></pre>
js
const pre = document.getElementsByTagName("pre")[0];
const attrMap = pre.attributes;
let result = `The 'test' attribute contains ${attrMap.length} attributes.\n`;
pre.textContent = result;
仕様書
Specification |
---|
DOM Standard # dom-namednodemap-length |
ブラウザーの互換性
BCD tables only load in the browser