如何在 jQuery 中删除 DOM 元素?


empty( ) 方法从匹配元素的集合中移除所有子节点, 而 remove( expr ) 方法从 DOM 中移除所有匹配元素.

示例

可以尝试运行以下代码, 以了解如何在 jQuery 中移除 DOM 元素

实时演示

<html>
   <head>
      <title>jQuery Example</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
       
      <script>
         $(document).ready(function() {
            $("div").click(function () {
               $(this).remove( );
            });
         });
      </script>
       
      <style>
         .div{ margin:10px;padding:12px; border:2px solid #666; width:60px;}
      </style>
   </head>
   
   <body>
   
      <p>Click on any square below:</p>
      <span id = "result"> </span>
       
      <div class = "div" style = "background-color:blue;"></div>
      <div class = "div" style = "background-color:green;"></div>
      <div class = "div" style = "background-color:red;"></div>
       
   </body>
</html>

更新于: 09-12-2019

448 次浏览

开启你的 职业生涯

完成课程获得认证

开始学习
广告