最新的Web开发教程
 

HTML DOM removeAttribute() Method

<元素对象

卸下class从属性<h1>元素:

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

移除属性之前:

Hello World

除去属性后:

Hello World

试一试»

定义和用法

所述removeAttribute()方法去除specified从一个元素属性。

此方法和之间的差removeAttributeNode()方法,是在removeAttributeNode()方法删除指定Attr 对象 ,而此方法删除具有指定名称的属性。 其结果将是相同的。 这种方法也没有返回值,而removeAttributeNode()方法返回removed属性,作为Attr对象。

提示:使用getAttribute()方法返回的元素的属性值。

提示:使用setAttribute()方法将属性添加给一个元素。


浏览器支持

方法
removeAttribute()

句法

element .removeAttribute( attributename )

参数值

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

技术细节

返回值: 无返回值
DOM版本 核心1级元素对象

例子

更多示例

卸下href从属性<a>元件:

document.getElementById("myAnchor").removeAttribute("href");

移除属性之前:

除去属性后:

Go to w3ii.com
试一试»

相关页面

HTML教程: HTML属性

HTML DOM参考: href="met_element_hasattribute.html"> hasAttribute() Method

HTML DOM参考: href="met_element_getattribute.html"> getAttribute() Method

HTML DOM参考: href="met_element_setattribute.html"> setAttribute() Method


<元素对象