iframe自适应高度详解编程语言

function iFrameHeight() {  
	var ifm= document.getElementById("common"); //获得iframe,common为iframe的ID  
	//document.frames['common'].document是IE6 IE7中的方法  
	var subWeb = document.frames ? document.frames["common"].document : ifm.contentDocument;  
	if(ifm != null && subWeb != null) {  
		$(ifm).height(subWeb.body.scrollHeight); 
	}  
} 

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/14483.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论