DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 使用jQuery不判斷浏覽器高度解決iframe自適應高度問題
使用jQuery不判斷浏覽器高度解決iframe自適應高度問題
編輯:JQuery特效代碼     

這裡介紹兩個超級簡單的方法,不用寫什麼判斷浏覽器高度、寬度啥的。

下面的兩種方法自選其一就行了。一個是放在和iframe同頁面的,一個是放在test.html頁面的。

注意別放錯了地方。
iframe的代碼中,注意要寫ID,沒有ID查找不到

代碼如下:
<iframe src="test.html" id="main" width="700" height="300" frameborder="0" scrolling="auto"></iframe>

方法一:

代碼如下:
//注意:下面的代碼是放在和iframe同一個頁面調用
$("#main").load(function(){
var mainheight = $(this).contents().find("body").height()+30;
$(this).height(mainheight);
});

方法二:

代碼如下:
//注意:下面的代碼是放在test.html調用
$(window.parent.document).find("#main").load(function(){
var main = $(window.parent.document).find("#main");
var thisheight = $(document).height()+30;
main.height(thisheight);
});

在做項目的過程中需要使用iframe,但是iframe默認有一個高度,超過該默認高度的會內容會被隱藏起來,而小於該默認高度的內容呢又會把默認高度當成內容的高度,在經過尋找答案的過程中,找到了怎樣去控制iframe高度自適應

iframe自適應高度本身是很簡單的方法,就是在頁面加載完成後,重新計算一下高度即可。

代碼如下:

代碼如下:
//公共方法:設置iframe的高度以保證全部顯示數據
//function SetPageHeight() {
//    var iframe = getUrlParam('ifname');
//    var myiframe = window.parent.document.getElementById(iframe);
//     iframeLoaded(myiframe);
//}
var iframeLoaded = function (iframe) {
    if (iframe.src.length > 0) {
        if (!iframe.readyState || iframe.readyState == "complete") {
            var bHeight =
            iframe.contentWindow.document.body.scrollHeight;
            var dHeight =
            iframe.contentWindow.document.documentElement.scrollHeight;
            var height = Math.max(bHeight, dHeight);
            iframe.height = height;
        }
    }
}
//分頁時重新設置 iframe 高度 ; 修改後:iframe.name = iframe.id
var reSetIframeHeight = function()
{
    try {
        var oIframe = parent.document.getElementById(window.name);
        oIframe.height = 100;
        iframeLoaded(oIframe);
    }
    catch (err)
    {
        try {
         parent.document.getElementById(window.name).height = 1000;
          } catch (err2) { }
    }
}

調用reSetIframeHeight();方法即可。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved