该end()
方法还原最近的破坏性操作,将匹配元素的集合更改为破坏性操作之前的先前状态。
您可以尝试运行以下代码,以了解如何在jQuery中使用end函数:
<html> <head> <title>jQuery end() function</title> <script src = "https://cdn.staticfile.org/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>