getAttribute() 方法返回指定属性名的属性值,以 Attr 对象。
提示:如果您只需要返回属性值,请使用 getAttribute。
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
所有主流浏览器均支持 getAttributeNode() 方法。
element.getAttributeNode(attributename)
参数 | 类型 | 描述 |
---|---|---|
attributename | String | 必需。需要返回的属性的名称。 |
类型 | 描述 |
---|---|
Attr 对象 | 指定的属性节点 |
DOM 版本 | Core Level 1 Element Object |