在jQuery中克隆内容标记<template>

时间:2015-09-30 14:29:19

标签: javascript jquery templates clone

我试图用jquery克隆标记的内容,但是我无法复制链接到子元素的事件, 我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您可以使用clone()方法,将withDataAndEventsdeepWithDataAndEvents参数设置为true

var $templateClone = $('template').clone(true, true);

请参阅:http://api.jquery.com/clone/

或者,您可以使用没有参数的普通clone()方法,并使用事件委派将事件绑定到公共父级。