jquery has a cloning method, namely the clone() method. The clone() method is specially used to process dom clones. It can generate a copy of the selected element, including child nodes, text and attributes; the syntax is "$(selector).clone(true|false)", true specifies that copy event processing is required program.
Related recommendations: "jq视频"
Clone node is a common operation of DOM, jQuery provides a clone method , specially used for processing dom clone
.clone() method to deeply copy all matching element sets, including all matching elements, subordinate elements of matching elements, and text nodes.
The clone method is relatively simple, just clone the node, but it should be noted that if the node has other processing such as events or data, we need to pass a Boolean value ture through clone(ture) to specify, so Not only clone the simple node structure, but also clone the accompanying events and data.
Syntax
$(selector).clone(true|false)
Parameters:
For example:
HTML part
##
$("div").on('click', function() {//执行操作}) //clone处理一 $("div").clone() //只克隆了结构,事件丢失 //clone处理二 $("div").clone(true) //结构、事件与数据都克隆
The above is the detailed content of Does jquery have a cloning method?. For more information, please follow other related articles on the PHP Chinese website!