iframe自适应高度

无废话,网上很多文章一下写了几种实现方式,代码短点的呢用不了,长点的呢眼睛都看花

下面的代码在火狐、IE上正常

 

 
  
  
  
  
  1. <script type="text/javascript"
  2. function reinitIframe(){ 
  3. var iframe = document.getElementById("mainFrame"); 
  4. try
  5. var bHeight = iframe.contentWindow.document.body.scrollHeight; 
  6. var dHeight = iframe.contentWindow.document.documentElement.scrollHeight; 
  7. var height = Math.max(bHeight, dHeight); 
  8. iframe.height = height; 
  9. }catch (ex){} 
  10. window.setInterval("reinitIframe()", 200); 
  11. </script>  

转载自http://www.jb51.net/article/26132.htm,Mark

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