jQuery removeAttr()で指定属性を削除する方法

環境
Google Chrome 105.0.5195.127
Windows 10 Home 64bit
jquery 3.6.1

構文
const 変数名 = $('div’).removeAttr('class’);
removeAttrメソッドを使ってdiv要素のclass属性を削除します。
「attr()」を使って設定や変更を行った属性を削除します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
const result = $('div').removeAttr('class');
console.log( result[0] );
});
</script>
</head>
<body>
<div class="city">東京</div>
</body>
</html>
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script> $(document).ready(function(){ const result = $('div').removeAttr('class'); console.log( result[0] ); }); </script> </head> <body> <div class="city">東京</div> </body> </html>
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  const result = $('div').removeAttr('class');
  console.log( result[0] );

});
</script>
</head>
<body>

<div class="city">東京</div>

</body>
</html>

実行結果
div要素に対して、「removeAttr('class’)」のように記述することでもともと設定されていたclass属性を削除します。
コンソールログに下記メッセージを出力します。
<div>東京</div>

jQuery

Posted by arkgame