一个兼容多个浏览器的自适应iframe尺寸的脚本

 

  
  
  
  
  1. <script type="text/javascript">    
  2. function SetCwinHeight(iframeObj){    
  3. if (document.getElementById){     
  4.   if (iframeObj){    
  5.     if (iframeObj.contentDocument && iframeObj.contentDocument.body.offsetHeight){    
  6.       iframeObj.height = iframeObj.contentDocument.body.offsetHeight;    
  7.       } else if (document.frames[iframeObj.name].document && document.frames[iframeObj.name].document.body.scrollHeight){  iframeObj.height = document.frames[iframeObj.name].document.body.scrollHeight;    
  8.       }    
  9.     }    
  10.   }    
  11. }    
  12. </script>  

用起来也很方便

 

  
  
  
  
  1. <iframe name="frameContent" src="*" frameborder="0" width="100%" onload="SetCwinHeight(this)"></iframe>   

原文:http://www.5icool.org/a/200912/46.html

你可能感兴趣的:(iframe,职场,休闲,自适应高度)