h

iframe의 높이를 내용에 맞게 자동으로 맞춰주는 함수

/*    iframe Resizing
    익스플로러 6, 넷스케이프 8 이상에서 작동
    너비는 적용안되고 높이만 자동 리사이즈
    Ex)
        <iframe src="주소" width="640" marginwidth="0" marginheight="0" frameborder="0" onLoad="ResizeIFrame(this);"></iframe>
*/




function resizeIFrame(iframeId)
{
    try {
        var innerBody = iframeId.contentWindow.document.body;
        var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
   
        if(iframeId.style.height != innerHeight) {
            iframeId.style.height = innerHeight;
        }
        if(document.all) {
            innerBody.attachEvent('onclick',parent.do_resize);
            innerBody.attachEvent('onkeyup',parent.do_resize);
        }
        else {
            innerBody.addEventListener("click", parent.do_resize, false);
            innerBody.addEventListener("keyup", parent.do_resize, false);
        }
    }
    catch (e) {
    }
}
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|

댓글 3개

이렇게 하여도 됩니다.

<!-- 아이프레임 창 높이 조절 시작 -->
<script language="JavaScript">
<!--
function calcHeight() {
//find the height of the internal page
var the_height=
document.getElementById('iframe').contentWindow.
document.body.scrollHeight;
//change the height of the iframe
document.getElementById('iframe').height=
the_height;
}
//-->
</script>
<!-- 아이프레임 창 높이 조절 끝 -->

여기까지를 <head>와 </head>사이에 넣으시고


게시판을 삽입하는 곳에는

<!--- 게시판 삽입 시작 -->
<?
echo "<iframe id=iframe onLoad=\"calcHeight();\" src=\"여기에 게시판 주소를 넣으세요\" scrolling=no frameborder=0 width=1000 height=0></iframe>";
?>
<!--- 게시판 삽입 --->
지마켓 등에서 상품 등록시 아이프레임을 사용하려고 하는데, 높이 조절이 자동으로 안되네요..
다른 서버의 웹문서에도 가능한가요???
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
16년 전 조회 2,438
16년 전 조회 2,392
16년 전 조회 1,952
16년 전 조회 2,498
16년 전 조회 2,711
16년 전 조회 1,808
16년 전 조회 2,176
16년 전 조회 2,354
16년 전 조회 1,443
16년 전 조회 2,150
16년 전 조회 1,828
16년 전 조회 2,335
16년 전 조회 1,729
16년 전 조회 2,632
16년 전 조회 2,327
16년 전 조회 6,313
17년 전 조회 2,335
17년 전 조회 4,102
17년 전 조회 1,873
17년 전 조회 2,173
17년 전 조회 2,516
17년 전 조회 3,030
17년 전 조회 2,726
17년 전 조회 3,172
17년 전 조회 3,418
17년 전 조회 3,432
17년 전 조회 2,239
17년 전 조회 1,966
17년 전 조회 1,835
17년 전 조회 2,149
17년 전 조회 1,632
17년 전 조회 2,391
17년 전 조회 2,169
17년 전 조회 2,012
17년 전 조회 1,715
17년 전 조회 2,580
17년 전 조회 3,660
17년 전 조회 2,545
17년 전 조회 2,157
17년 전 조회 1,921
17년 전 조회 2,463
17년 전 조회 5,147
17년 전 조회 1,845
17년 전 조회 2,589
17년 전 조회 2,553
17년 전 조회 2,839
17년 전 조회 2,550
17년 전 조회 4,878
17년 전 조회 3,381
17년 전 조회 3,286
17년 전 조회 2,006
17년 전 조회 1,671
17년 전 조회 4,398
17년 전 조회 2,063
17년 전 조회 2,065
17년 전 조회 2,556
17년 전 조회 2,302
17년 전 조회 1,936
17년 전 조회 4,353
17년 전 조회 2,170
17년 전 조회 3,528
17년 전 조회 3,443
17년 전 조회 1,438
17년 전 조회 2,215
17년 전 조회 1,997
17년 전 조회 2,243
17년 전 조회 3,058
17년 전 조회 3,409
17년 전 조회 3,618
17년 전 조회 3,739
17년 전 조회 1,835
17년 전 조회 1,831
17년 전 조회 2,637
17년 전 조회 2,385
17년 전 조회 2,672
17년 전 조회 3,220
17년 전 조회 3,680
17년 전 조회 2,767
17년 전 조회 2,040
17년 전 조회 3,618
17년 전 조회 3,481
17년 전 조회 3,439
17년 전 조회 4,310
17년 전 조회 2,975
17년 전 조회 2,815
17년 전 조회 3,065
17년 전 조회 3,291
17년 전 조회 3,015
17년 전 조회 1,883
17년 전 조회 2,282
17년 전 조회 1,923
17년 전 조회 2,332
17년 전 조회 2,946
17년 전 조회 9,098
17년 전 조회 3,555
17년 전 조회 4,612
17년 전 조회 2,375
17년 전 조회 4,034
17년 전 조회 1,932
17년 전 조회 1,773