我是靠谱客的博主 冷静小甜瓜,最近开发中收集的这篇文章主要介绍内嵌框架自适应页面大小 js语句,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

none.gif main.htm   主页面
none.gif
none.gif
< html >   
none.gif    
< head >   
none.gif       
< meta   http-equiv ='Content-Type'   content ='text/html;   charset =gb2312' />   
none.gif       
< title > iframe自适应加载的页面高度 </ title >   
none.gif    
</ head >   
none.gif     
none.gif    
< body >
none.gif        
< iframe src ="child.htm" ></ iframe >
none.gif    
</ body >
none.gif
</ html >
none.gif
none.gif
none.gifframe.htm 内嵌框架页
none.gif
none.gif
< html >   
none.gif
< head >   
none.gif    
< meta   http-equiv ='Content-Type'   content ='text/html;   charset =gb2312' />   
none.gif      
< title > iframe   自适应其加载的网页(多浏览器兼容) </ title >   
expandedblockstart.gifcontractedblock.gif    
< script type ="text/javascript" > dot.gif
inblock.gif    
<!--
inblock.gif    
function iframeAutoFit()
expandedsubblockstart.gifcontractedsubblock.gif    
dot.gif{
inblock.gif        
var ex;
inblock.gif        
try
expandedsubblockstart.gifcontractedsubblock.gif        
dot.gif{
inblock.gif            
if(window!=parent)
expandedsubblockstart.gifcontractedsubblock.gif            
dot.gif{
inblock.gif                
var a = parent.document.getElementsByTagName("IFRAME");
inblock.gif                
inblock.gif                
for(var i=0; i<a.length; i++) //author:meizz
expandedsubblockstart.gifcontractedsubblock.gif
                dot.gif{
inblock.gif                    
if(a[i].contentWindow==window)
expandedsubblockstart.gifcontractedsubblock.gif                    
dot.gif{
inblock.gif                        
var h1=0, h2=0, h3=0, h4=0;
inblock.gif                        
if(document.documentElement&&document.documentElement.scrollHeight)
expandedsubblockstart.gifcontractedsubblock.gif                        
dot.gif{
inblock.gif                             h1
= document.documentElement.scrollHeight;
inblock.gif                             h3
= document.documentElement.scrollWidth;
expandedsubblockend.gif                         }

inblock.gif                        
if(document.body) h2=document.body.scrollHeight;h4=document.body.scrollWidth;
inblock.gif                        
inblock.gif
inblock.gif                        
var h=Math.max(h1, h2);
inblock.gif                        
var h0=Math.max(h3,h4);
inblock.gif                       
inblock.gif                         a[i].style.height
= h +"px";
inblock.gif                         a[i].style.width
= h0 + "px";
expandedsubblockend.gif                     }

expandedsubblockend.gif                 }

expandedsubblockend.gif             }

expandedsubblockend.gif         }

expandedsubblockstart.gifcontractedsubblock.gif        
catch (ex)dot.gif{}
expandedsubblockend.gif     }

inblock.gif    
inblock.gif    
if(document.attachEvent)
expandedsubblockstart.gifcontractedsubblock.gif    
dot.gif{
inblock.gif         window.attachEvent(
"onload",   iframeAutoFit);
inblock.gif         window.attachEvent(
"onresize",   iframeAutoFit);
expandedsubblockend.gif     }

inblock.gif    
else
expandedsubblockstart.gifcontractedsubblock.gif    
dot.gif{
inblock.gif         window.addEventListener('load',   iframeAutoFit,  
false);
inblock.gif         window.addEventListener('resize',   iframeAutoFit,  
false);
expandedsubblockend.gif     }

inblock.gif    
//-->
expandedblockend.gif
     </ script >   
none.gif
</ head >   
none.gif
< body style ="overflow:hidden;border:0px" >
none.gif    
< table border ="1" width ="200" style ="height: 200px;width:300px;" >
none.gif        
< tr >
none.gif            
< td > iframe   自适应其加载的网页(多浏览器兼容,支持XHTML) </ td >
none.gif        
</ tr >
none.gif    
</ table >
none.gif
</ body >   
none.gif
</ html >
none.gif

 

 

转载于:https://www.cnblogs.com/hahacjh/archive/2010/05/16/1736575.html

最后

以上就是冷静小甜瓜为你收集整理的内嵌框架自适应页面大小 js语句的全部内容,希望文章能够帮你解决内嵌框架自适应页面大小 js语句所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

相关文章

__x__(14)0906第三天__<iframe> 内联框架  引入有一个外部html页面
__x__(14)0906第三天__