HTML DOM 元素 removeAttribute() 方法
示例
从 <h1> 元素中移除 class 属性
document.getElementsByTagName("H1")[0].removeAttribute("class");
尝试一下 »
从 <a> 元素中移除 href 属性
document.getElementById("myAnchor").removeAttribute("href");
尝试一下 »
描述
The removeAttribute()
方法从元素中移除属性。
removeAttribute() 和 removeAttributeNode() 的区别
The removeAttribute()
方法移除一个属性,并且没有返回值。
The removeAttributeNode()
方法移除一个 Attr 对象,并返回被移除的对象。
结果将是相同的。
另见
教程
语法
element.removeAttribute(name)
参数
参数 | 描述 |
name | 必需的。 属性的名称。 |
返回值
无 |
浏览器支持
element.removeAttribute()
是 DOM Level 1 (1998) 的功能。
它在所有浏览器中都得到完全支持
Chrome | Edge | Firefox | Safari | Opera | IE |
是 | 是 | 是 | 是 | 是 | 9-11 |