花式盒子第二次没有打开

时间:2012-07-20 05:18:33

标签: jquery

单击按钮时,下面给出的代码第二次无效。我使用jquery的触发器(单击)函数调用它。

jQuery(document).ready(function(){
        jQuery('.fancybox').fancybox(
            {

               hideOnContentClick : true,
               width: 382,
               autoDimensions: true,
               type : 'iframe',
               showTitle: false,
               scrolling: 'no',
               onComplete: function(){
                jQuery('#fancybox-frame').load(function() { // wait for frame to load and then gets it's height
                    jQuery('#fancybox-content').height(jQuery(this).contents().find('body').height()+30);
                    jQuery.fancybox.resize();
                 });

               }
            }
        );
    });

0 个答案:

没有答案