element.removeAttribute( attributeName )メソッド

element.removeAttribute( attributeName )は、「element」に指定した要素から、引数「attributeName」に指定した属性名の属性を削除するメソッド。

構文

$elementNodeReference.removeAttribute( attributeName );

引数

attributeName
属性名を指定。

サンプル

 ■■■サンプル■■■

サンプルの動作について

「スタイル属性値を削除」ボタンをクリックすると、ボタンの右横の「■■■サンプル■■■」の文字色が赤色でなくなる。

サンプルのソースコード

JavaScript

<script type="text/javascript">
function sample() {
    var $sample = document.getElementById( "sample" );
    $sample.removeAttribute( "style" );
}
</script>

HTML

<p id="sample" style="color: red;">
    <button onclick="sample();">スタイル属性値を削除</button>
     ■■■サンプル■■■
</p>

スポンサード リンク

カテゴリー: DOM, Elementオブジェクト, JavaScript, メソッド, リファレンス, 属性, 逆引き パーマリンク