jQuery :last-of-type 选择器


jQuery 中的 :last-of-type 选择器用于选择属于其父元素类型中最后一个子元素的所有元素。

语法

语法如下 −

$(":last-of-type")

示例

让我们看一个示例来实现 jQuery :last-of-type 选择器 −

<!DOCTYPE html>
<html>
<head>
<style>
   .one {
      color: white;
      background-color: green;
      font-size: 16px;
      border: 2px blue solid;
   }
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $("p:last-of-type").addClass("one");
   });
</script>
</head>
<body>
<h1>Examination Details</h1>
<p>Date: 25th October 2019</p>
<p>Timings: 10AM TO 1PM</p>
<p>All the best for exams!</p>
</body>
</html>

输出

这将产生以下输出 −

更新时间: 05-11-2019

127 次浏览

开启你的 职业生涯

完成课程获取认证

开始
广告