Iframe自适应高度(兼容ie,firefox多浏览器)的代码

发布时间:2019-09-10编辑:脚本学堂
本文介绍下,iframe自适应高度的代码,可以兼容IE、firefox等浏览器,有需要的朋友,参考下。

例1,

复制代码 代码示例:
<script type="text/javascript">
/**
 * iframe自适应高度 兼容IE firefox浏览
 * edit www.jb200.com
*/
function SetCwinHeight(){
var bobo=document.getElementById("bobo"); //iframe id
if (document.getElementById){
if (bobo && !window.opera){
if (bobo.contentDocument && bobo.contentDocument.body.offsetHeight){
bobo.height = bobo.contentDocument.body.offsetHeight;
}else if(bobo.Document && bobo.Document.body.scrollHeight){
bobo.height = bobo.Document.body.scrollHeight;
}
}
}
}
</script>
<iframe width="100%" id="bobo" onload="Javascript:SetCwinHeight()" height="1" frameborder="0" src="/default.asp?cateID=1"></iframe>

例2,iframe 自适应高度[在IE6 IE7 FF下测试通过]
iframe自动适应高度,兼容多浏览器,有需要的可以试试。
方法1,

复制代码 代码示例:
<script type="text/javascript" language="javascript">
<!--
//调整 PageContent 的高度
function TuneHeight() {
var frm = document.getElementById("content01");
var subWeb = document.frames ? document.frames["content01"].document : frm.contentDocument;
if(frm != null && subWeb != null) {
frm.height = subWeb.body.scrollHeight;
}
}
//-->
</script>
<iframe id="content01" name="content01" frameBorder=0 scrolling=no src="main.html" width="100%"onLoad="TuneHeight()" ></iframe>

方法2,
1,js代码部分

复制代码 代码示例:
//iframe自适应高度[在IE6 IE7下测试通过]
function reSetIframe(){
var iframe = document.getElementById("iframeId");
try{
var bHeight = iframe.contentWindow.document.body.scrollHeight;
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(bHeight, dHeight);
iframe.height = height;
}catch (ex){}
}

2,html代码部分

复制代码 代码示例:
<iframe src="" id="weather" name="weather" width="278" onload="reSetIframe()" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" border="0" framespacing="0"> </iframe>

例3,iframe自适应高度的代码 兼容IE,遨游,火狐等浏览器。
Iframe自适应高度的代码,对IE,遨游,火狐都浏览器都兼容。
代码如下:

复制代码 代码示例:
<script type="text/javascript">
/**
* iframe自适应高度
* by www.jb200.com
*/
function reinitIframe(){
var iframe = document.getElementById("mainFrame");
try{
var bHeight = iframe.contentWindow.document.body.scrollHeight;
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(bHeight, dHeight);
iframe.height = height;
}catch (ex){}
}
window.setInterval("reinitIframe()", 200);
</script>