2

我有一个 iFrame,我正在加载一个页面,该页面在单击各种页面标签后使用 ajax 加载数据。现在我正在使用 Javascript 函数来计算加载数据高度以替换 iframe 的高度,从而调整 iframe 的大小,从而避免滚动条。现在我的问题是只要单击标签就会调用脚本,但数据仍在加载。请告诉我一些我可以用来等到 ajax 完成加载数据然后调用我的函数的东西。

我正在使用以下脚本:

function resizeFrame() {
    var body = document.body,
    html = document.documentElement;
    var iFrame = parent.document.getElementById("iframe1");//get id of iframe from parent
    var nHeight=0;
    var iframeWin = iFrame.contentWindow.document.body ;
    nHeight = iframeWin.scrollHeight;
    iFrame.style.height = nHeight+'px'; //set the frame height to correspond to the content 
}

我的html如下:

<iframe src="" id="iframe1" name="iframe1" scrolling="no" frameborder="0" onload="$(document).ready(function(){resizeFrame();});"  style="width:960px;height:570px">

上面的代码对我来说很好(iframe/src url 都在同一个域中。)我还想获取 iframe 内容窗口页面中的 div 元素的高度。我该如何抓住它?

4

2 回答 2

3

html

<iframe id="containter-frame" 
        src="<url of the page>"
        frameborder="0"
        min-height="600px"
        width="100%">
</iframe>

javascript/jquery:

$(document).ready(function(){

    var frame = $('iframe#containter-frame');

    //hide document default scroll-bar
    document.body.style.overflow = 'hidden';


    frame.load(resizeIframe);   //wait for the frame to load
    $(window).resize(resizeIframe); 

    function resizeIframe() {
        var w, h;       

        //detect browser dimensions
            if($.browser.mozilla){
            h = $(window).height();
            w = $(window).width();                  
        }else{
            h = $(document).height();
            w = $(document).width();
        }

        //set new dimensions for the iframe
            frame.height(h);
        frame.width(w);
    }
});

这里的技巧是frame.load方法等待帧加载。之后,根据需要操纵高度和宽度。我在这里的设置是覆盖整个屏幕。该页面仅包含一个 iframe,没有其他内容。

亲切的问候。

于 2012-04-05T12:14:55.643 回答
1

如果您对窗口的整个宽度不感兴趣,您可以让它适合内容

var frame = $('iframe#modal-body');

frame.load(resizeIframe);
function resizeIframe() {
    frame.height(frame.contents().height());
    frame.height(frame.contents().height());
}
于 2013-04-27T03:47:59.843 回答