jQuery 中的 jQuery.andSelf() 方法的功能是什么?
andSelf() 方法将之前的选择项添加到当前选择项中。当你在脚本中有多次遍历并随后添加在上次遍历之前匹配的某项内容时,该方法非常有用。
示例
你可以尝试运行以下代码了解如何使用 jQuery.andSelf() 方法
<html> <head> <title>jQuery andSelf() method</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function(){ $("div").find("p").andSelf().addClass("border"); }); </script> <style> p, div { margin:5px; padding:5px; } .border { border: 2px solid red; } .background { background:yellow; } </style> </head> <body> <div> <p>First Paragraph</p> <p>Second Paragraph</p> </div> </body> </html>
广告