iframe 높이 자동조절 스크립트
<script language='javascript'>
<!--
function changeHeight() {
//아이프레임 안쪽 페이지 높이를 먼저구하신후
var the_height=document.getElementById('content').contentWindow.document.body.scrollHeight;
// 아이프레임 높이를 바꿔주시면 됩니다.
document.getElementById('content').height=the_height; }
//-->
</script>
<iframe id='content'
frameborder=0
width=100%
scrolling=no
onLoad="changeHeight();"
src='content.php'>
</iframe>
<script language='javascript'>
<!--
function changeHeight() {
//아이프레임 안쪽 페이지 높이를 먼저구하신후
var the_height=document.getElementById('content').contentWindow.document.body.scrollHeight;
// 아이프레임 높이를 바꿔주시면 됩니다.
document.getElementById('content').height=the_height; }
//-->
</script>
<iframe id='content'
frameborder=0
width=100%
scrolling=no
onLoad="changeHeight();"
src='content.php'>
</iframe>
'개발 > javascript Tip' 카테고리의 다른 글
javascript 예약어 (0) | 2011.12.03 |
---|---|
Javascript 에서 PHP 함수 사용 (0) | 2011.12.03 |
JavaScript 웹 브라우저 버전 체크 및 Javascript 버젼 체크 (0) | 2011.12.03 |
input type file 버튼 모양변경 (0) | 2011.12.03 |
숫자에 컴마(,) 쓰고 한글로 숫자 표시 (0) | 2011.12.03 |