如何使用jQuery从父级删除所有子级节点?

要从父级删除所有子节点,请使用empty()方法。该empty()方法从匹配的元素集中删除所有子节点。

示例

您可以尝试运行以下代码以了解如何从父级删除所有子节点-

<html>

   <head>

      <title>jQuery empty() method</title>

      <script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

       

      <script>

         $(document).ready(function() {

            $("div").click(function () {

               $(this).empty();

            });

         });

      </script>

     

      <style>

         .div {

            margin:10px;

            padding:12px;

            border:2px solid #666;

            width:60px;

         }

      </style>

   </head>

   

   <body>

   

      <p>Click on any square below to see the result:</p>

       

      <div class = "div" style = "background-color:yellow;">ONE</div>

      <div class = "div" style = "background-color:gray;">TWO</div>

       

   </body>

   

</html>

以上是 如何使用jQuery从父级删除所有子级节点? 的全部内容, 来源链接: utcz.com/z/345560.html

回到顶部