링크 자료실

아이프레임 높이 조절 스크립트

작성자 정보

  • 작성자 관리자
  • 작성일

컨텐츠 정보

본문


<html>
<head>
<title>iframe 높이 자동 조절</title>
<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>
</head>
<body>
<iframe width="700" id="the_iframe"
onLoad="calcHeight();"
src="http://hex254.zerois.net/kims/main.php"
scrolling="NO"
frameborder="0"
height="0">
</iframe>
</body>
</html>

관련자료

댓글 0
등록된 댓글이 없습니다.
알림 0