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


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


用法
first-child selector

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

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

虽然 .first() 只匹配一个元素,但 :first-child 选择器可以匹配多个元素:每个父元素一个。这相当于 :nth-child(1)

例子:

在每个匹配的 div 中查找第一个跨度以加下划线并添加悬停状态。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>first-child demo</title>
  <style>
  span {
    color: #008;
  }
  span.sogreen {
    color: green;
    font-weight: bolder;
  }
  </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>
</div>
<div>
  <span>Glen,</span>
  <span>Tane,</span>
  <span>Ralph</span>
</div>
 
<script>
$( "div span:first-child" )
  .css( "text-decoration", "underline" )
  .hover(function() {
    $( this ).addClass( "sogreen" );
  }, function() {
    $( this ).removeClass( "sogreen" );
  });
</script>
 
</body>
</html>

演示:

相关用法


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