如何找到特定类型元素的所有后代元素?
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>
广告