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,316
16년 전 조회 2,272
16년 전 조회 1,833
16년 전 조회 2,389
16년 전 조회 2,597
16년 전 조회 1,699
16년 전 조회 2,058
16년 전 조회 2,238
16년 전 조회 1,331
16년 전 조회 2,027
16년 전 조회 1,702
16년 전 조회 2,207
16년 전 조회 1,620
16년 전 조회 2,524
16년 전 조회 2,194
16년 전 조회 6,204
16년 전 조회 2,225
16년 전 조회 3,998
16년 전 조회 1,755
16년 전 조회 2,041
16년 전 조회 2,399
17년 전 조회 2,918
17년 전 조회 2,623
17년 전 조회 3,064
17년 전 조회 3,297
17년 전 조회 3,319
17년 전 조회 2,114
17년 전 조회 1,841
17년 전 조회 1,709
17년 전 조회 2,028
17년 전 조회 1,510
17년 전 조회 2,270
17년 전 조회 2,045
17년 전 조회 1,898
17년 전 조회 1,598
17년 전 조회 2,465
17년 전 조회 3,534
17년 전 조회 2,437
17년 전 조회 2,037
17년 전 조회 1,819
17년 전 조회 2,342
17년 전 조회 5,020
17년 전 조회 1,730
17년 전 조회 2,476
17년 전 조회 2,437
17년 전 조회 2,717
17년 전 조회 2,442
17년 전 조회 4,750
17년 전 조회 3,246
17년 전 조회 3,163
17년 전 조회 1,875
17년 전 조회 1,537
17년 전 조회 4,269
17년 전 조회 1,930
17년 전 조회 1,937
17년 전 조회 2,420
17년 전 조회 2,180
17년 전 조회 1,814
17년 전 조회 4,231
17년 전 조회 2,056
17년 전 조회 3,396
17년 전 조회 3,323
17년 전 조회 1,322
17년 전 조회 2,132
17년 전 조회 1,887
17년 전 조회 2,145
17년 전 조회 2,943
17년 전 조회 3,311
17년 전 조회 3,511
17년 전 조회 3,628
17년 전 조회 1,725
17년 전 조회 1,718
17년 전 조회 2,526
17년 전 조회 2,268
17년 전 조회 2,560
17년 전 조회 3,117
17년 전 조회 3,582
17년 전 조회 2,658
17년 전 조회 1,928
17년 전 조회 3,514
17년 전 조회 3,359
17년 전 조회 3,330
17년 전 조회 4,211
17년 전 조회 2,848
17년 전 조회 2,709
17년 전 조회 2,967
17년 전 조회 3,199
17년 전 조회 2,912
17년 전 조회 1,766
17년 전 조회 2,154
17년 전 조회 1,752
17년 전 조회 2,213
17년 전 조회 2,839
17년 전 조회 8,997
17년 전 조회 3,439
17년 전 조회 4,503
17년 전 조회 2,268
17년 전 조회 3,939
17년 전 조회 1,833
17년 전 조회 1,663