「jQuery」.removeAttrで属性を削除するサンプル

環境
jQuery3.6.0
Google Chrome 98.0.4758.102
書式
$(“セレクタ名").removeAttr(“placeholder");
removeAttrを利用して属性を削除します。

使用例

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(function(){
  $('#btnDel').click(function(){
    //placeholderを削除する
    $("#username").removeAttr("placeholder");
  });
});
</script>
</head>
<body>
 <p> <input type="button" id="btnDel" value="削除"></p>
  名前:<input type="text" id="username" placeholder="山田 太郎">
</body>
</html>

結果
「削除」ボタンを押すと、テキストボックスのプレースホルダー「山田 太郎」が消えます。

jQuery

Posted by arkgame