我正在编写一个脚本,但它似乎不起作用。这个想法是复制一个 DIV 和它的 jQuery 函数,它只是停止运行。
我究竟做错了什么?
称它为jQuery('#Certificaat').clone(true).appendTo('#CertificaatNieuw');
clone() 中的可选参数设置为 true 允许使用数据和事件进行复制。
您正在使用空白 .clone() 函数。您应该使用.clone([withDataAndEvents])
jQuery('#Certificaat').clone(true)... // the "true" argument does the job for you.