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


JQuery :first-of-type用法及代码示例


用法
first-of-type selector

说明:选择所有同名的兄弟元素中的第一个元素。

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

:first-of-type 选择器匹配没有其他元素的元素,这些元素在文档树中具有相同的父元素和相同的元素名称。

例子:

在每个匹配的 div 中找到第一个跨度并向其添加一个类。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>first-of-type demo</title>
  <style>
  span.fot {
    color: red;
    font-size: 120%;
    font-style: italic;
  }
  </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>
  <b>Nobody,</b>
  <span>Jörn,</span>
  <span>Scott,</span>
  <span>Timo</span>
</div>
 
<script>
$( "span:first-of-type" ).addClass( "fot" );
</script>
 
</body>
</html>

演示:

相关用法


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