我正在使用 jquery 克隆功能,但我真的不明白会发生什么。阅读文档说如果我使用 clone(true) 所有事件处理程序都应该被复制。但这并没有发生。
所以,我尝试做的是一个灯箱,在里面我克隆了缩放效果。这里是网站。
您可以看到一张带有我尝试克隆的缩放效果的大照片,然后如果您单击链接,您将看到灯箱效果,但没有缩放。
这是点击功能,这是我所做的功能:
jQuery(document).ready(function(){
var lb = '<div class="lb-cont"></div>';
jQuery(lb).prependTo('body');
jQuery('.post').each(function(){
//code and vars to center the content....
obj.on('click','.vm',function(){
var bh = jQuery('body').height();
var contenido = jQuery('.light-cont', obj).clone(true).removeClass('hide');
jQuery('.lb-cont').width(ww);
jQuery('.lb-cont').height(bh);
jQuery('.lb-cont').fadeIn('slow');
contenido.appendTo('.lb-cont');
return false;
});
)};
)};
我让它工作的最后一个意图是在我的代码中包含缩放效果,它可以工作,
obj.bind('click','.vm',function(){
var bh = jQuery('body').height();
var contenido = jQuery('.light-cont', obj).clone(true).removeClass('hide');
jQuery('.lb-cont').width(ww);
jQuery('.lb-cont').height(bh);
jQuery('.lb-cont').fadeIn('slow');
contenido.appendTo('.lb-cont');
//THIS IS THE ZOOM TRIGGER
jQuery('.imagess').epicZoom({});
return false;
});
但我想知道这是否是正确的方法以及为什么 clone(true) 和 clone(true, true) 不起作用。