Latest web development tutorials

HTML DOM removeAttribute () method

Elements Object Reference Element object

Examples

Remove style attribute head element:

document.getElementsByTagName("H1")[0].removeAttribute("style");

Delete Attribute ago:

Hello World

Remove property:

Hello World


try it"

Definition and Usage

removeAttribute () method Removes the specified attribute

View similar method removeAttributeNode () .


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support removeAttribute () method


grammar

element .removeAttribute (attributename)

Parameter s

参数 类型 描述
attributename String 必需。规定要删除的属性的名称。

return value

No return value.

technical details

DOM version Core Level 1 Element Object


Elements Object Reference Element object