jQuery 的破坏性方法 end() 是什么?


jQuery end() 方法恢复最近的破坏性操作,将匹配的元素集合更改为其在破坏性操作执行前的状态。

你可以这样使用:

operations.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", "4px red solid");
         });
      </script>
       
      <style>
         p{
            margin:5px;
            padding:5px;
         }
      </style>
   </head>
   
   <body>
      <p><span>Hello</span> World!</p>
   </body>
   
</html>

更新日期:09-Dec-2019

241 次浏览

启动你的 职业

通过完成课程来获得认证

开始
广告