jQuery日本語リファレンス

jQuery does not mean Japanese Query...

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");
[全コードを表示] [実行結果を単体で表示]