:nth-last-of-type()

最後の要素から数えて、その親要素のn番目の子要素を全て選択します。

$(":nth-last-of-type(index/even/odd/equation)") 1.9追加

引数 説明
index マッチした各子要素のインデックス、 最後(1)から開始して、 even(偶数)またはodd(奇数)の文字列、 または方程式を指定します。 (例::nth-last-of-type(even):nth-last-of-type(4n))

jQueryの:nth-セレクタの実装はCSS仕様に沿って定められているため、nの値は1から始まります。 :eq():evenのような他のセレクタでは、JavaScriptに沿って0から始まります。 3つの<li>を含む1つの>ul>が与えられた場合、 $('li:nth-last-of-type(1)')は3つ目、すなわち最後の<li>を選択します。

この使用方法に関する詳細については、 W3CのCSSの仕様 に記載されています。

デモ

マッチした各ulの最後から2番目のliを見つけ、文章を追記します。

<!DOCTYPE html>
<html>
<head>
  <style>
  div { float:left; }
  span { color:blue; }
  </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <div>
  <ul>
    <li>John</li>
    <li>Karl</li>
    <li>Adam</li>
  </ul>
</div>
<div>
  <ul>
    <li>Dan</li>
  </ul>
</div>
<div>
  <ul>
    <li>Dave</li>
    <li>Rick</li>
    <li>Timmy</li>
    <li>Gibson</li>
  </ul>
</div>
<script>$("ul li:nth-last-of-type(2)").append("<span> - 2nd to last!</span>");</script>

</body>
</html>

各ボタンがどのように作用するか確認してみてください。

<!DOCTYPE html>
<html>
<head>
  <style>
button { display:block; font-size:12px; width:100px; }
div { float:left; margin:10px; font-size:10px;
      border:1px solid black; }
span { color:blue; font-size:18px; }
#inner { color:red; }
td { width:50px; text-align:center; }
</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <div>
  <button>:nth-last-of-type(even)</button>
  <button>:nth-last-of-type(odd)</button>
  <button>:nth-last-of-type(3n)</button>
  <button>:nth-last-of-type(2)</button>
</div>
<div>
  <button>:nth-last-of-type(3n+1)</button>
  <button>:nth-last-of-type(3n+2)</button>
</div>

<div>
  <table>
    <tr><td>John</td></tr>
    <tr><td>Karl</td></tr>
    <tr><td>Brandon</td></tr>
    <tr><td>Benjamin</td></tr>
  </table>
</div>
<div>
  <table>
    <tr><td>Sam</td></tr>
  </table>
</div>
<div>
  <table>
    <tr><td>Glen</td></tr>
    <tr><td>Tane</td></tr>
    <tr><td>Ralph</td></tr>
    <tr><td>David</td></tr>
    <tr><td>Mike</td></tr>
    <tr><td>Dan</td></tr>
  </table>
</div>

<span>tr<span id="inner"></span></span>

<script>
$("button").click(function () {
  var str = $(this).text();
  $("tr").css("background", "white");
  $("tr" + str).css("background", "#ff0000");
  $("#inner").text(str);
});
</script>

</body>
</html>

 Back to top

© 2010 - 2017 STUDIO KINGDOM