「jQuery」要素のid値を取得するサンプル

2022年2月27日

環境
jquery 3.6.0
google chrome 98.0.4758.102

書式
$(this).attr('id’);
attrメソッドで、要素の"id"の値を取得します。

使用例

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(function(){
  $('#btnReg').click(function(event){
    var idRes = $(this).attr('id');
    alert("要素のid値: "+idRes);
  });
});
</script>
</head>
<body>
  <input type="button" id="btnReg" value="登録">
</body>
</html>

結果
「登録」ボタンを押すと、「要素のid値: btnReg」が表示されます。

jQuery

Posted by arkgame