PREFERENCE  LOGIN  Partners  ENGLISH  HOME

Iframe 크기 자동조절 스크립트

From 컴플라이언스 & 클라우드컴퓨팅 기업 이너버스

스크립트 부분

<script language="JavaScript">
<!--
function calcHeight()
{
  //find the height of the internal page
  var the_height=
    document.getElementById('the_iframe').contentWindow.
      document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('the_iframe').height=
      the_height;
}
//-->
</script>

iframe 쪽

<iframe id="the_iframe"
        src="./index.php"
        width=100%
        height=100%
        frameborder=0
        scrolling=no
        onload="calcHeight();"></iframe>