我需要帮助弄清楚为什么我的翻转function只发射一次并且它们似乎解开了。 有任何想法吗?

我在这里使用3个插件翻转,延迟和fancybox。 我把它写成所以当你点击翻转事件时会触发,然后延迟,然后是延迟后的fancybox。 我无法弄清楚为什么翻盖只能工作一次,但是fancybox继续处理后续点击。 任何提示将不胜感激。 谢谢。

 jQuery.noConflict(); // First Home Page Popout Box jQuery(document).ready(function() { jQuery('#card-processing-link').live('click', function() { jQuery('#card-processing-box').flip({ 'direction' : 'lr', speed : '300' }); }); //Fancybox popout event jQuery('.card-processing-link').delayed('click', 400, function(){ jQuery(this).trigger('click').off().fancybox({ 'onStart' : function(){ jQuery('#card-processing-box').hide(); jQuery('#card-processing-popout').show(); }, 'transitionIn' : 'elastic', 'transitionOut' : 'fadeOut', 'speedIn' : 300, 'speedOut' : 500, 'width' : '420', 'height' : 'auto', 'scrolling' : 'no', 'centerOnScroll' : 'true', 'overlayColor' : 'transparent', 'onClosed' : function(){ jQuery('#card-processing-popout').hide(); jQuery('#card-processing-box').fadeIn(); } }); });  

www.crexendo.com/store/4313892上的实例

谢谢!

删除.off()然后,似乎你的问题在这里/