jQuery.clone()方法如何在jQuery中工作?

要使用jQuery克隆元素,请使用jQuery.clone()方法。该clone()方法克隆匹配的DOM Elements并选择这些克隆。

这对于将元素的副本移动到DOM中的另一个位置很有用。

示例

您可以尝试运行以下代码,以了解如何在jQuery中使用jQuery.clone()方法:

<html>

   <head>
      <title>jQuery clone() method</title>
      <script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
       
      <script>
         $(document).ready(function() {
            $("div").click(function () {
               $(this).clone().insertAfter(this);
            });
         });
      </script>
       
      <style>
         .div {
             margin:15px;
             padding:15px;
             border:4px solid #666;
             width:90px;
         }
      </style>
   </head>
   
   <body>
   
      <p>Click on any square below to see the result:</p>
       
      <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>