使用工作功能复制DIV

时间:2013-05-16 08:12:15

标签: jquery html copy

我正在编写一个脚本,但它似乎不起作用。 这个想法是复制一个DIV和它的jQuery函数,它只是停止运行。

http://tinyurl.com/cr5uft9

我做错了什么?

2 个答案:

答案 0 :(得分:2)

将其称为jQuery('#Certificaat').clone(true).appendTo('#CertificaatNieuw');

clone()中的可选参数设置为true,允许复制数据和事件。

答案 1 :(得分:0)

您正在使用空白.clone()函数。 你应该使用.clone([withDataAndEvents])

jQuery('#Certificaat').clone(true)... // the "true" argument does the job for you.