设置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;
    }
   }
  }
  
 }
原文地址:https://www.cnblogs.com/wuye1200/p/2106562.html