当前位置: 移动技术网 > IT编程>网页制作>CSS > Iframe自适应其加载的内容高度

Iframe自适应其加载的内容高度

2017年12月12日  | 移动技术网IT编程  | 我要评论

红包只抢不发遭骂报警,古灵精探b 粤语,李咏 国母

<html>  
    <head>  
       <meta  http-equiv='content-type'  content='text/html;  charset=gb2312'>  
       <meta  name='author'  content='站长中国 http://www.zzcn.net/'>  
       <title>iframe自适应加载的页面高度</title>  
    </head>  

    <body>
        <iframe src="child.htm"></iframe>
    </body>
</html>

child.htm:

<html>  
<head>  
   <meta  http-equiv='content-type'  content='text/html;  charset=gb2312'>  
   <meta  name='author'  content='站长中国 http://www.zzcn.net/'>  
   <title>iframe  自适应其加载的网页(多浏览器兼容)</title>  
   <script  language=javascript>
   function iframeautofit()
   {
      try
      {
         if(window!=parent)
         {
          var a = parent.document.getelementsbytagname("iframe");
            for(var i=0; i<a.length; i++) //author:meizz
            {
               if(a[i].contentwindow==window)
               {
                   var h = document.body.scrollheight;
                   if(document.all) {h += 4;}
                   if(window.opera) {h += 1;}
                   a[i].style.height = h;
               }
            }
         }
      }
      catch (ex)
      {
         alert("脚本无法跨域操作!");
      }
   }
   if(document.attachevent)  window.attachevent("onload",  iframeautofit);  
   else  window.addeventlistener('load',  iframeautofit,  false);  
   </script>  
</head>  
<body>  
   <div  style="width:  200;  height:  400;  background-color:  yellow">  
       iframe  自适应其加载的网页(多浏览器兼容)  
   </div>  
</body>  
</html>

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网