如何使用DOM元素创建表单的副本

时间:2013-08-12 20:55:48

标签: javascript dom

如何使用其所有表单元素创建表单副本,以便可以操作副本并保持原始文件不变?

2 个答案:

答案 0 :(得分:7)

使用像这样的普通javascript cloneNode

var dupNode = node.cloneNode(deep);

实施例

var p = document.getElementById("para1"),
var p_prime = p.cloneNode(deep); 
//If "deep" is set to true it will clone all the child nodes too,
//If set to false then only the node and not the children

这是documentation

希望有所帮助。

答案 1 :(得分:3)

使用jQuery clone对象:

var cloned_object = $( ".hello" ).clone().

并将其添加到dom

cloned_object.appendTo( ".goodbye" );

以下是参考资料:

http://api.jquery.com/clone/