`
抽风的鱼
  • 浏览: 50508 次
  • 性别: Icon_minigender_2
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论

iframe高度自适应

 
阅读更多
<iframe src="index.html" id="iframepage" frameborder="0" scrolling="no"
marginheight="0" marginwidth="0" onLoad="iFrameHeight()"></iframe>
 
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;
   ifm.width = subWeb.body.scrollWidth;
}  

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics