iframe 自适应高度

孤街浪徒 提交于 2020-04-07 04:59:55

iframe 的高度自适应,常用的功能

<iframe name="detl" id="detl" src="list0.html" scrolling="no" frameborder="0" width="100%" height="auto" onload="Javascript:SetWinHeight(this)" ></iframe>
        
<div class="space10"> <script type="text/javascript">
      
function SetWinHeight(obj)
        {
        
var win=obj;
        
if (document.getElementById)
        {
               
if (win && !window.opera)
               {
                
if (win.contentDocument && win.contentDocument.body.offsetHeight)
        
                 win.height 
= win.contentDocument.body.offsetHeight; 
                
else if(win.Document && win.Document.body.scrollHeight)
                 win.height 
= win.Document.body.scrollHeight;
               }
        }
        }

      </script></div> 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!