JS 获取iframe内容高度的方法

<iframe src="http://www.z6.net.cn" frameborder="0" scrolling="no" id="iframepage" onLoad="iFrameHeight()" style="width:100%;"></iframe>
<script>
	function iFrameHeight(){
		var ifm= document.getElementById("iframepage");
		var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument;
		if(ifm != null && subWeb != null) {
			ifm.height = subWeb.body.scrollHeight;
		}
	} 
</script>

未经允许不得转载:任鹏个人博客 » JS 获取iframe内容高度的方法

赞 (2) 打赏

评论 0

取消
  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏