JavaScript 根据内容调整iframe大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 根据内容调整iframe大小相关的知识,希望对你有一定的参考价值。

<script language="JavaScript">
<!--
function calcHeight()
{
  //find the height of the internal page
  var the_height=
    document.getElementById('the_iframe').contentWindow.
      document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('the_iframe').height=
      the_height;
}
//-->
</script>

and in the body create the iframe tag:

<iframe width="700" id="the_iframe" 
	onLoad="calcHeight();" 
	src="testing_page.shtml" 
	scrolling="NO" 
	frameborder="1" 
	height="1">
An iframe capable browser is 
required to view this web site.
</iframe>

以上是关于JavaScript 根据内容调整iframe大小的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 将iFrame的大小调整为其内容

JavaScript 根据内容调整iframe高度

将 iframe 内容高度设置为动态自动调整大小

仅在 Chrome 中调整 iframe 大小问题

跨域 iframe 调整大小?

Javascript 没有调整 iframe 的大小