最新のWeb開発のチュートリアル
 

HTML DOM removeAttribute() Method

<Elementオブジェクト

削除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


<Elementオブジェクト