iframe设置自适应高度

<script type="text/javascript">
  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;
     }
    }
   }
  }
</script>
<iframe width="100%" id="iframeid" onload="Javascript:SetCwinHeight()" height="1" frameborder="0" src="kimi.php"></iframe>

你可能感兴趣的:(iframe)