1

以下のコードは、ボタンをクリックしたときに2回目に機能しません。jqueryのtrigger(click)関数を使用して呼び出しました。

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();
                 });

               }
            }
        );
    });
4

0 に答える 0