`
zxl10059
  • 浏览: 57227 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

iframe 自适应高度

阅读更多
<script type="text/javascript">
function reinitIframe(){
	var iframe = document.getElementById("info");
	try{

	var bHeight = iframe.contentWindow.document.body.scrollHeight;

	var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;

	var height = Math.max(bHeight, dHeight-10);

	iframe.height =  height;

	}catch (ex){}

	}
	window.setInterval("reinitIframe()", 10);
</script>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics