2

我正在使用fancybox 1.3.1。现在我将一个 iFrame 加载到工作正常的 Fancybox 中。在 iFrame 中,用户一步一步地进行。在某个步骤,内容的高度会发生变化。如何更新 iFrame 的高度?

我尝试了 jQuery postMessage:

<script type="text/javascript" src="fileadmin/templates/lib/jquery.ba-postmessage.min.js"></script>
<script type="text/javascript">
    $("#fancylink").fancybox({
        'type'    :    'iframe',
        'width' : 700,
        'height' : 450,
        'autoScale' : false
    }); 
</script>

<script type="text/javascript">
// set inital height
var if_height = 450;

$(document).ready(function() {
    if($.receiveMessage){
        $.receiveMessage(function(e){  

            // Get the height from the passsed data.
            var h = Number( e.data.replace( /.*if_height=(\d+)(?:&|$)/, '$1' ));
            if ( !isNaN( h ) && h > 0 && h !== if_height ) {
                // Height has changed, update the iframe.
                // checking min and max height
                h=(h<450)?450:h; 
                $("#fancybox-frame").height( if_height = h );
            }
        });
    }
});
</script>

我得到了两种带有溢出的高度样式:隐藏;可以在这里看到:

<div id="fancybox-inner" style="top: 10px; left: 10px; width: 700px; height: 450px; overflow: hidden;">
<iframe id="fancybox-frame" scrolling="auto" frameborder="0" src="https://www.externaldomain.com#http://www.internaldomain.com/page" hspace="0" name="fancybox-frame1347984635401" style="height: 1180px;">

结果有更多内容可用,但用户无法滚动。所以什么都不做比这更好。

我也试过了

$('#element').fancybox({
    'onComplete' : function(){
        $.fancybox.resize();
    }
}); 

但这里什么也没有发生(没有调整大小)。我认为这种调整大小只是在第一次加载fancybox 时。但也是第一次什么都没有发生。

是否有解决我的问题的方法或者我只能使用固定尺寸?

解决方案:

所以我添加了以下代码,它似乎可以按预期工作:

$("#fancybox-inner").height( h );
$("#fancybox-wrap").height( h+20 );
$.fancybox.center();

我会测试一下,但我认为这可以工作。如果fancybox高于当前页面会发生什么?页面会变大吗?

4

1 回答 1

4

您可以执行以下操作。

 function updateMyFancyBox() {
    $.fancybox.wrap.height($.fancybox.inner.height() + $('div#yourContentDiv').height());//increase fancybox height by adding your div height.
    $.fancybox.update();//Fancybox will re-size according to new size, if it exceeds size limit, it will show scroll bar.
 }
于 2012-11-28T07:32:15.923 回答