HTML DOM removeAttribute() 方法
HTML DOM 的 removeAttribute() 方法可以删除指定的属性
另一个方法是 removeAttributeNode()
浏览器支持
Yes | Yes | Yes | Yes | Yes |
语法
element.removeAttribute( attributename )
参数
参数 | 类型 | 描述 |
---|---|---|
attributename | String | 必需。规定要删除的属性的名称 |
范例
删除头部元素的 style 属性
document.getElementsByTagName("H1")[0].removeAttribute("style");