我试图用jquery克隆标记的内容,但是我无法复制链接到子元素的事件, 我怎么能这样做?
答案 0 :(得分:0)
您可以使用clone()
方法,将withDataAndEvents
和deepWithDataAndEvents
参数设置为true
:
var $templateClone = $('template').clone(true, true);
请参阅:http://api.jquery.com/clone/
或者,您可以使用没有参数的普通clone()
方法,并使用事件委派将事件绑定到公共父级。