3

別のページを読み込むiframeを含むポップアップページがあります。

ロードされたページのサイズに応じてiframeの高さのサイズを変更したい。

4

1 に答える 1

3

簡単な方法の1つは、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>
于 2012-08-07T10:02:31.197 に答える