jQuery removeClassメソッドで指定クラスを削除する

環境
jquery3.6.3
Google Chrome 111.0.5563.65(Official Build)
構文
$(セレクタ).removeClass(クラス);
jQueryのremoveClassメソッドは、classを削除します。

使用例

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
      $("#btnchk").click(function() {
          $("#cft").removeClass("testB");
      });
});
</script>
<style>
  .testA {
    border: 2px solid green;
  }
  .testB {
    background: yellow;
  }
</style>

</head>
<body>

<div id="div1">
  <div id="cft" class="testA testB">これはテストデータです</div>
</div><br>
<input type="button" id="btnchk" value="変更">

</body>
</html>

実行結果
ボタン「変更」を押すと、testBクラスを削除します。

jQuery

Posted by arkgame