当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery :nth-last-of-type()用法及代码示例


用法
nth-last-of-type selector

说明:选择所有与其父级的nth-child 相对于具有相同元素名称的兄弟级的元素,从最后一个元素计数到第一个元素。

  • 添加的版本:1.9jQuery( ":nth-last-of-type(index/even/odd/equation)" )

    index: 要匹配的每个孩子的索引,从最后一个(1),字符串even或者odd,或方程(例如::nth-last-of-type(even),:nth-last-of-type(4n))

因为jQuery对:nth-选择器的实现是严格从CSS规范派生的,所以n的值为"1-indexed",表示从1开始计数。对于其他选择器表达式,如 .first() .eq() ,jQuery如下JavaScript 的 "0-indexed" 计数。给定一个包含三个 <li> 的单个 <ul>$('li:nth-last-of-type(1)') 选择第三个,最后一个 <li>

可以在W3C CSS specification 中找到有关此用法的进一步讨论。

例子:

在每个匹配的 ul 中找到倒数第二个 li 并记下它。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>nth-last-of-type demo</title>
  <style>
  div {
    float: left;
  }
  span {
    color: blue;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.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 lang="en">
<head>
  <meta charset="utf-8">
  <title>nth-last-of-type demo</title>
  <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="https://code.jquery.com/jquery-3.5.0.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>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 :nth-last-of-type()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。