最新的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


<元素對象