jQueryオブジェクトにマッチするHTML要素のclass属性からクラスを削除する。
jQueryObject.removeClass(class)
jQueryオブジェクト
removeClass メソッドの使用例を以下に示す。
.italic {
font-style: italic;
}
.underline {
text-decoration-line: underline;
}
<p id="example" class="italic underline">
The quick brown fox jumps over the lazy dog.
</p>
<button id="btn">Remove class</button>
$("#btn").click(function (){
$("#example").removeClass("italic underline")
})
The quick brown fox jumps over the lazy dog.
OpenJS Foundation 2023. .removeClass(). jQuery API Documentation