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,430
16년 전 조회 2,385
16년 전 조회 1,943
16년 전 조회 2,492
16년 전 조회 2,694
16년 전 조회 1,802
16년 전 조회 2,162
16년 전 조회 2,344
16년 전 조회 1,426
16년 전 조회 2,138
16년 전 조회 1,822
16년 전 조회 2,327
16년 전 조회 1,721
16년 전 조회 2,622
16년 전 조회 2,317
16년 전 조회 6,308
16년 전 조회 2,327
17년 전 조회 4,096
17년 전 조회 1,866
17년 전 조회 2,163
17년 전 조회 2,505
17년 전 조회 3,020
17년 전 조회 2,716
17년 전 조회 3,167
17년 전 조회 3,409
17년 전 조회 3,424
17년 전 조회 2,232
17년 전 조회 1,957
17년 전 조회 1,827
17년 전 조회 2,143
17년 전 조회 1,621
17년 전 조회 2,379
17년 전 조회 2,161
17년 전 조회 1,998
17년 전 조회 1,700
17년 전 조회 2,565
17년 전 조회 3,649
17년 전 조회 2,537
17년 전 조회 2,147
17년 전 조회 1,912
17년 전 조회 2,454
17년 전 조회 5,133
17년 전 조회 1,836
17년 전 조회 2,577
17년 전 조회 2,544
17년 전 조회 2,825
17년 전 조회 2,533
17년 전 조회 4,866
17년 전 조회 3,370
17년 전 조회 3,274
17년 전 조회 1,998
17년 전 조회 1,664
17년 전 조회 4,384
17년 전 조회 2,052
17년 전 조회 2,050
17년 전 조회 2,537
17년 전 조회 2,283
17년 전 조회 1,923
17년 전 조회 4,338
17년 전 조회 2,155
17년 전 조회 3,513
17년 전 조회 3,434
17년 전 조회 1,425
17년 전 조회 2,201
17년 전 조회 1,985
17년 전 조회 2,230
17년 전 조회 3,049
17년 전 조회 3,394
17년 전 조회 3,603
17년 전 조회 3,721
17년 전 조회 1,821
17년 전 조회 1,821
17년 전 조회 2,627
17년 전 조회 2,369
17년 전 조회 2,666
17년 전 조회 3,210
17년 전 조회 3,672
17년 전 조회 2,757
17년 전 조회 2,027
17년 전 조회 3,612
17년 전 조회 3,476
17년 전 조회 3,433
17년 전 조회 4,304
17년 전 조회 2,967
17년 전 조회 2,806
17년 전 조회 3,055
17년 전 조회 3,282
17년 전 조회 3,007
17년 전 조회 1,874
17년 전 조회 2,271
17년 전 조회 1,917
17년 전 조회 2,323
17년 전 조회 2,931
17년 전 조회 9,090
17년 전 조회 3,552
17년 전 조회 4,606
17년 전 조회 2,362
17년 전 조회 4,026
17년 전 조회 1,916
17년 전 조회 1,765