根据内容调整iFrame高度

时间:2012-08-06 10:37:36

标签: asp.net html iframe

我有一个弹出页面,其中有一个iframe,后者又会加载另一个页面。

   

我想调整iframe高度,具体取决于加载的页面大小。

1 个答案:

答案 0 :(得分:3)

其中一个简单的方法是使用javascript:

<script language="JavaScript">
  function autoResize(id){
  var newheight;
  var newwidth;

  if(document.getElementById){
    newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
    newwidth=document.getElementById(id).contentWindow.document .body.scrollWidth;
  }

  document.getElementById(id).height= (newheight) + "px";
  document.getElementById(id).width= (newwidth) + "px";
}
</script>

<IFRAME SRC="Iframef/iframep.aspx" width="100%" height="200px" id="iframe1" marginheight="0" frameborder="0" onLoad="autoResize('iframe1');"></iframe>