欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iframe自适高度

程序员文章站 2022-05-29 07:57:34
...
<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>

 

相关标签: Opera