欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iframe自适应内容高度

程序员文章站 2022-04-18 09:19:59
...
<script type="text/javascript">
function reinitIframe(){
				var iframe = document.getElementById("frame_content");
					var bHeight = iframe.contentWindow.document.body.scrollHeight;
					var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
					var height = Math.max(bHeight, dHeight);
					iframe.height =  height;
}
			window.setInterval("reinitIframe()", 200);
</script>
<iframe id="frame_content" scrolling="no" frameborder="" style="border:#F00 5px solid" onload="this.height=100" src="exp.html">

</iframe>

这个js很奇怪,在本地浏览器的时候使用绝对路径会无效,另外在FF3.5下测试为无法使用上级目录”../”否则也为无效。
上传服务器一切正常,所以放心使用

转载于:https://my.oschina.net/post/blog/36422