[스크립트] 아이프레임 리사이즈
페이지 정보
작성자 관리자 작성일15-06-18 15:57 조회2,319회 댓글0건본문
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>
<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>
댓글목록
등록된 댓글이 없습니다.