📜  如何使用 jQuery 克隆一个块?

📅  最后修改于: 2022-05-13 01:56:00.926000             🧑  作者: Mango

如何使用 jQuery 克隆一个块?

jQuery 中的克隆方法执行一组匹配元素的深层复制。您可以创建数据的副本以及事件处理程序的副本。

句法:

$(selector).clone(true|false)

参数值:

  • True指定事件处理程序也应该被复制
  • False(默认)表示不应复制事件处理程序。

示例 1:在此示例中,我们没有将任何值传递给 clone 方法。

HTML


  

    
      
    
  
    

  

    
        

Clone() method

                   

            The .clone() method performs a deep              copy of the set of matched elements,             meaning that it copies the matched              elements as well as all of their             descendant elements and text nodes.         

    

            

           
        

Result

    
  


HTML


  

    
  
    
      
    

  

    
             
       

Clone method example

  


输出:

示例 2:在此示例中,我们将“true”值传递给复制事件处理程序的 clone 方法。在这里,每当用户单击段落时,我们都会更改段落的背景颜色。正如您在输出中看到的那样,这将被复制。

HTML



  

    
  
    
      
    

  

    
             
       

Clone method example

  

输出: