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,261
16년 전 조회 2,224
16년 전 조회 1,768
16년 전 조회 2,338
16년 전 조회 2,544
16년 전 조회 1,635
16년 전 조회 1,999
16년 전 조회 2,169
16년 전 조회 1,264
16년 전 조회 1,967
16년 전 조회 1,648
16년 전 조회 2,148
16년 전 조회 1,564
16년 전 조회 2,465
16년 전 조회 2,135
16년 전 조회 6,163
16년 전 조회 2,158
16년 전 조회 3,942
16년 전 조회 1,697
16년 전 조회 1,992
16년 전 조회 2,337
16년 전 조회 2,862
16년 전 조회 2,564
17년 전 조회 2,997
17년 전 조회 3,242
17년 전 조회 3,257
17년 전 조회 2,059
17년 전 조회 1,777
17년 전 조회 1,643
17년 전 조회 1,973
17년 전 조회 1,461
17년 전 조회 2,209
17년 전 조회 1,988
17년 전 조회 1,833
17년 전 조회 1,542
17년 전 조회 2,425
17년 전 조회 3,479
17년 전 조회 2,385
17년 전 조회 1,984
17년 전 조회 1,761
17년 전 조회 2,289
17년 전 조회 4,973
17년 전 조회 1,690
17년 전 조회 2,428
17년 전 조회 2,382
17년 전 조회 2,660
17년 전 조회 2,381
17년 전 조회 4,699
17년 전 조회 3,197
17년 전 조회 3,112
17년 전 조회 1,828
17년 전 조회 1,483
17년 전 조회 4,212
17년 전 조회 1,886
17년 전 조회 1,886
17년 전 조회 2,363
17년 전 조회 2,129
17년 전 조회 1,766
17년 전 조회 4,184
17년 전 조회 2,006
17년 전 조회 3,348
17년 전 조회 3,279
17년 전 조회 1,267
17년 전 조회 2,085
17년 전 조회 1,844
17년 전 조회 2,096
17년 전 조회 2,905
17년 전 조회 3,267
17년 전 조회 3,469
17년 전 조회 3,585
17년 전 조회 1,685
17년 전 조회 1,676
17년 전 조회 2,481
17년 전 조회 2,229
17년 전 조회 2,519
17년 전 조회 3,062
17년 전 조회 3,539
17년 전 조회 2,621
17년 전 조회 1,895
17년 전 조회 3,473
17년 전 조회 3,323
17년 전 조회 3,287
17년 전 조회 4,166
17년 전 조회 2,807
17년 전 조회 2,668
17년 전 조회 2,921
17년 전 조회 3,155
17년 전 조회 2,871
17년 전 조회 1,709
17년 전 조회 2,123
17년 전 조회 1,717
17년 전 조회 2,177
17년 전 조회 2,792
17년 전 조회 8,955
17년 전 조회 3,397
17년 전 조회 4,465
17년 전 조회 2,231
17년 전 조회 3,901
17년 전 조회 1,799
17년 전 조회 1,618