當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。