只是小人物

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

 //让Iframe自动适应高度
 function SetWinHeight(obj)
 {
  var win=obj;
  if (document.getElementById)
  {
   if (win && !window.opera)
  {
  if (win.contentDocument && win.contentDocument.body.offsetHeight)
   {
   if(win.contentDocument.body.offsetHeight<420){
    win.height = 420;//设置最小高度
   }else{
    win.height = win.contentDocument.body.offsetHeight;
    }
   }
   else if(win.Document && win.Document.body.scrollHeight)
   win.height = win.Document.body.scrollHeight;
   }
  }
 }

 

 

html标签:

<iframe name="dtl" id="dtl" src=""  onload="Javascript:SetWinHeight(this)" height="100%" width="100%" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="auto"></iframe>

 onload="Javascript:SetWinHeight(this)"一定要有

posted on 2013-01-04 08:45  只是小人物  阅读(2625)  评论(0编辑  收藏  举报