여러 브라우저를 호환하는 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

좋은 웹페이지 즐겨찾기