아이프레임 높이 조절 스크립트
작성자 정보
- 작성자 관리자
- 작성일
컨텐츠 정보
- 조회 1,721
본문
<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개
등록된 댓글이 없습니다.