<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>
댓글 3개
head 에 삽입하는 스크립트
<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>
body 안에 iframe 적용 부분에 삽입하는 태그
ㅎㅎ
<iframe width="size" id="the_iframe"
onLoad="calcHeight();"
src="경로"
scrolling="NO"
frameborder="0"
height="1">
</iframe>