Attributes/API/jQuery
removeClass(class)
指定した要素から、CSSクラスを削除する。
- class
- String削除するクラス名
引数
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
偶数インデックス(1番目、3番目)の要素から'blue'クラスを削除する。
p { margin: 4px; font-size:16px; font-weight:bolder; } .blue { color:blue; } .under { text-decoration:underline; } .highlight { background:yellow; }
<p class="blue under">Hello</p> <p class="blue under highlight">and</p> <p class="blue under">then</p> <p class="blue under">Goodbye</p>
$("p:even").removeClass("blue");
[全コードを表示]
[実行結果を単体で表示]