jQuery 中 .end() 函数的作用是什么?
end() 方法还原最近的破坏性操作,将匹配的元素集合更改为破坏性操作发生前的上一个状态。
示例
你可以尝试运行以下代码来了解如何使用 jQuery 中的 end 函数。
<html> <head> <title>jQuery end() function</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").find("span").end().css("border", "2px blue solid"); }); </script> <style> p{ margin:10px; padding:10px; } </style> </head> <body> <p><span>Hello</span> World!</p> </body> </html>
广告