<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;
        }
    }
}

相关文章:

  • 2021-12-12
  • 2021-12-12
  • 2021-11-16
  • 2021-06-17
猜你喜欢
  • 2021-12-10
  • 2021-12-04
  • 2021-07-18
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
相关资源
相似解决方案