iframe 自适应高度[在IE6 IE7 FF下测试通过]_Javascript教程-查字典教程网
iframe 自适应高度[在IE6 IE7 FF下测试通过]
iframe 自适应高度[在IE6 IE7 FF下测试通过]
发布时间:2016-12-30 来源:查字典编辑
摘要:第一种方法:复制代码代码如下:第二种方法:jscode:复制代码代码如下://iframe自适应高度[在IE6IE7下测试通过]functi...

第一种方法:

复制代码 代码如下:

<script type="text/javascript" language="javascript">

<>

</script>

<iframe id="content01" name="content01" frameBorder=0 scrolling=no src="main.html" width="100%"onLoad="TuneHeight()" ></iframe>

第二种方法:

js code:

复制代码 代码如下:

//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){}

}

html:

复制代码 代码如下:

<iframe src="" id="weather" name="weather" width="278" onload="reSetIframe()" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" border="0" framespacing="0"> </iframe>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类