iframe自适应高度

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;
   }
}
}
<iframe width="778" align="center" height="200" id="win" name="win" onload="Javascrīpt:SetWinHeight(this)" frameborder="0" scrolling="no"></iframe>

你可能感兴趣的:(Opera)