在 jQuery 中,jQuery.children( ) 和 jQuery.siblings( ) 之间有什么区别?
jQuery children() 方法
children( [selector] ) 方法获取一个包含匹配元素集中的每个元素的所有唯一直接子元素的元素集。
以下是此方法使用所有参数的描述:
- selector − 这是一个可选参数,用于过滤所有子元素。如果未提供,则选择所有子元素。
示例
您可以尝试运行以下代码以了解如何使用 jQuery children() 方法。
<html> <head> <title>jQuery children() method</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("div").children(".selected").addClass("blue"); }); </script> <style> .blue { color:blue; } </style> </head> <body> <div> <span>Hello</span> <p class = "selected">Hello Again</p> <div class = "selected">And Again</div> <p class = "biggest">And One Last Time</p> </div> </body> </html>
jQuery siblings() 方法
如果您想获取兄弟元素,则使用 jQuery siblings() 方法。它返回所选元素的所有兄弟元素。
示例
您可以尝试运行以下代码以了解如何在 jQuery 中使用 siblings() 方法。
<!DOCTYPE html> <html> <head> <style> .myclass * { display: block; border: 2px solid green; color: green; padding: 3px; margin: 10px; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("li.new").siblings().css({"color": "blue", "border": "4px solid blue"}); }); </script> </head> <body> <div style="width:600px;" class="myclass"> <ol>ol <li>li</li> <li>li</li> <li class="new">li- This is the sibling.</li> <li>li</li> <li>li</li> </ol> </div> </body> </html>
广告