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


JQuery :last-of-type用法及代碼示例


用法
last-of-type selector

說明:選擇所有元素名稱相同的兄弟元素中的最後一個元素。

  • 添加的版本:1.9jQuery( ":last-of-type" )

:last-of-type 選擇器匹配在文檔樹中沒有具有相同父元素和相同元素名稱的其他元素的元素。

例子:

在每個匹配的 div 中找到最後一個 span,並添加一些 css 和懸停狀態。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>last-of-type 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>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>

演示:

相關用法


注:本文由純淨天空篩選整理自jquery.com大神的英文原創作品 :last-of-type。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。