方法一:在被嵌入頁面中加入如下js**:
view sourceprint?src="jquery-1.4.2.min.js"
$(document).ready(function());
經測試該方法下在火狐下不相容.
方法二:
在嵌入頁面中加入以下js方法:
view sourceprint?js**:
function iframeheight()
} 此方法測試時火狐高版本下不相容.
方法三:
此方法推薦,測試後再ie6/ie7/ie8/火狐下相容
在嵌入頁面中加入以下js方法:
view sourceprint?function dyniframesize(down)
else
if (ptar && !window.opera)
else if (ptar.document && ptar.document.body.scrollheight)
}
}
iframe 自適應高度
由於html沒有include或require,做網頁時我們會用iframe來達到包含頁面的目的。如果呼叫的iframe頁面高度會根據內容多少而發生變化,這時通常要保持iframe與內容頁面的高度,以避免出現iframe的滾動條。先搜尋了一下,有不少好的例子,但總覺得說的還不夠明了。下面給出詳細例子...
iframe自適應高度
來自 http ued.koubei.com 2008 05 07 iframe auto fit height 這貼比較長,沒有耐性的朋友請直接拖到帖子末尾的 示例,或者直接去玩我提供的demo。demo頁面 主頁面 iframe a.html 被包含頁面 iframe b.htm 和 ifram...
iframe高度自適應
nl ad this.height document.frames src document.body.scrollheight 例子 1,建立頁面 test.html 頁面中含有乙個 iframe,name為 ifrname id為 ifrid,src 為 iframe.html頁面。2,建立 i...