iframe高度自适应

ie6,7,8/firefox下测试通过

 

function SetCwinHeight(){

  var iframeid=document.getElementById("iframeid"); //iframe id
  if (document.getElementById){
   if (iframeid && !window.opera){
    if (iframeid.contentDocument && iframeid.contentDocument.body.offsetHeight){
     iframeid.height = iframeid.contentDocument.body.offsetHeight;
    }else if(iframeid.Document && iframeid.Document.body.scrollHeight){
     iframeid.height = iframeid.Document.body.scrollHeight;
    }
   }
  }
 }
posted @ 2010-09-26 15:34  songzibin  阅读(216)  评论(0编辑  收藏  举报