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


JQuery :last-child用法及代码示例


用法
last-child selector

说明:选择作为其父级的最后一个子级的所有元素。

  • 添加的版本:1.1.4jQuery( ":last-child" )

.last() 只匹配一个元素,而:last-child 可以匹配多个元素:每个父元素一个。

例子:

在每个匹配的 div 中找到最后一个 span,并添加一些 css 和悬停状态。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>last-child demo</title>
  <style>
  span.solast {
    text-decoration: line-through;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<div>
  <span>John,</span>
  <span>Karl,</span>
  <span>Brandon,</span>
  <span>Sam</span>
</div>
<div>
  <span>Glen,</span>
  <span>Tane,</span>
  <span>Ralph,</span>
  <span>David</span>
</div>
 
<script>
$( "div span:last-child" )
  .css({ color:"red", fontSize:"80%" })
  .hover(function() {
    $( this ).addClass( "solast" );
  }, function() {
    $( this ).removeClass( "solast" );
  });
</script>
 
</body>
</html>

演示:

相关用法


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