去掉iframe的横向滚动条,iframe自适应高度跟多兼容

 一个简单的去掉iframe的横向滚动条 的方法

 

      <iframe width = "90%" height = "100%" id = "fft"></iframe>

 

就是宽度 用百分比   不能100%  

 

注释:配合 iframe自适应高度效果更加

   

   <script type="text/javascript">

    function reinitIframe(){
      
    var iframe = document.getElementById("fft");
      
    try{
      
    iframe.height =  iframe.contentWindow.document.documentElement.scrollHeight;
      
    }catch (ex){}
      
    }
      
    window.setInterval("reinitIframe()", 500);
      
   </script>

 

 

 

你可能感兴趣的:(JavaScript)