HTML DOM attributes 属性
HTML DOM 的 attributes 属性返回指定节点属性的集合
可以使用 length 属性确定属性的数量
每个属性都是可用属性节点对象
浏览器支持
Yes | Yes | Yes | Yes | Yes |
在 Internet Explorer 8 以及更早的版本中,attributes 属性会返回元素所有可能属性的集合
语法
node.attributes
返回值
NamedNodeMap 对象, 表示属性的集合
范例
获取元素属性的集合
document.getElementsByTagName("button")[0].attributes;