링크 자료실

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

페이지 정보

작성자 관리자 작성일 05-05-02 19:31 조회 2,101 댓글 0

본문

<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