「jQuery」.eqでインデックス指定で子要素を取得するサンプル

2022年3月1日

環境
jQuery 3.6.0
Google Chrome 98.0.4758.102

書式
$('#セレクタ名 li’).eq(インデックス);
.eq()を使用してインデックス指定で子要素を取得します。

使用例

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(function(){
  $('#btnShow').click(function(){
    var obj = $('#city li').eq(1);
   alert("要素名: "+obj.text());
  });
});
</script>
</head>
<body>
  <input type="button" id="btnShow" value="検証">
  <ul id="city">
    <li>東京</li>
    <li>大阪</li>
    <li>福岡</li>
    <li>横浜</li>
  </ul>
</body>
</html>

結果
「検証」ボタンを押すと、2番目の子要素を取得して、「要素名: 大阪」が表示されます。

jQuery

Posted by arkgame