NamedNodeMap: length 属性
只读的 length
属性是 NamedNodeMap
接口中存储的对象数量。
值
包含地图中对象数量的数字
示例
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`;
规范
规范 |
---|
DOM 标准 # dom-namednodemap-length |
浏览器兼容性
BCD 表格仅在浏览器中加载