jQuery removeClassメソッドですべてのクラスを削除する

環境
jquery3.6.3
Google Chrome 111.0.5563.65(Official Build)

構文
$(セレクタ名).removeClass();
removeClassに引数を指定しない場合は全てのクラスが削除されます。

使用例

<!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();/*全てのクラス*/
      });
});
</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>

実行結果
ボタン「変更」を押すと、全てのクラスが削除されます。

jQuery

Posted by arkgame