如何找到特定类型元素的所有后代元素?


find( selector ) 方法可用于找到特定类型元素的所有后代元素。使用任何选择器语法可以编写选择器。

示例

你可以尝试运行以下代码来了解如何找到特定类型元素的所有后代元素

在线演示

<html>

   <head>
      <title>jQuery Example</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
       
      <script>
         $(document).ready(function() {
            $("p").find("span").addClass("selected");
         });
      </script>
       
      <style>
         .selected {
           color:blue;
         }
      </style>
   </head>
   
   <body>
      <p>This is first paragraph and <span>THIS IS BLUE</span></p>
      <p>This is second paragraph and <span>THIS IS ALSO BLUE</span></p>
   </body>
   
</html>

更新日期: 2019 年 12 月 9 日

87 次浏览

开启你的 职业生涯

完成此课程,获得认证

开始学习
广告