设置iframe高度 自适应

 function SetCwinHeight(){
     
//alert(1);
  var iframeid=document.getElementById("iframe1"); //iframe id
  if (document.getElementById){
   
if (iframeid && !window.opera){
    
if (iframeid.contentDocument && iframeid.contentDocument.body.offsetHeight){
     iframeid.height 
= iframeid.contentDocument.body.offsetHeight;
     alert(iframeid.contentDocument.body.offsetHeight);
    }
else if(iframeid.Document && iframeid.Document.body.scrollHeight){
     iframeid.height 
= iframeid.Document.body.scrollHeight;
    }
   }
  }
  
 }

posted on 2011-07-14 16:49  wuye1200  阅读(160)  评论(0编辑  收藏  举报

导航