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