`
berrywu
  • 浏览: 125277 次
  • 性别: Icon_minigender_1
  • 来自: 福建
社区版块
存档分类
最新评论

iframe自适高度

阅读更多
<iframe width="100%" id="autoHeightIframe" src="URL必须和该文件在同一个域名下"
       onload="Javascrīpt:setIframeHeight(this)" frameborder="0" scrolling="no" height="100%">
</iframe>

 

<script>
function setIframeHeight(iobj) {
 var win = iobj;
 if (document.getElementById("autoHeightIframe")) {
  if(win && !window.opera) {
   if (win.contentDocument && win.contentDocument.body.offsetHeight) {
    win.height = win.contentDocument.body.offsetHeight; 
   }else if (win.Document && win.Document.body.scrollHeight) {
    win.height = win.Document.body.scrollHeight;
   }
  }
 }
} 
</script>

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics