:nth-last-child()
最後の要素から数えて、その親要素のn番目の子要素を全て選択します。
$(":nth-last-child(index/even/odd/equation)") 1.9追加
引数 | 説明 |
---|---|
index |
マッチした各子要素のインデックス、
最後(1 )から開始して、
even (偶数)またはodd (奇数)の文字列、
または方程式を指定します。
(例::nth-last-child(even) 、:nth-last-child(4n) )
|
jQueryの:nth-セレクタの実装はCSS仕様に沿って定められているため、nの値は1から始まります。
:eq()
や:even
のような他のセレクタでは、JavaScriptに沿って0から始まります。
3つの<li>を含む1つの>ul>が与えられた場合、
$('li:nth-last-child(1)')
は3つ目、すなわち最後の<li>を選択します。
この使用方法に関する詳細については、 W3CのCSSの仕様 に記載されています。
デモ
マッチした各ulの最後から2番目のliを見つけ、文章を追記します。
<!DOCTYPE html>
<html>
<head>
<style>
span.solast { text-decoration:line-through; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div>
<span>Corey,</span>
<span>Yehuda,</span>
<span>Adam,</span>
<span>Todd</span>
</div>
<div>
<span>Jörn,</span>
<span>Scott,</span>
<span>Timo,</span>
<b>Nobody</b>
</div>
<script>
$("span:last-of-type")
.css({color:"red", fontSize:"80%"})
.hover(function () {
$(this).addClass("solast");
}, function () {
$(this).removeClass("solast");
});
</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-child(even)</button>
<button>:nth-last-child(odd)</button>
<button>:nth-last-child(3n)</button>
<button>:nth-last-child(2)</button>
</div>
<div>
<button>:nth-last-child(3n+1)</button>
<button>:nth-last-child(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>
© 2010 - 2017 STUDIO KINGDOM