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,264
16년 전 조회 2,228
16년 전 조회 1,777
16년 전 조회 2,343
16년 전 조회 2,552
16년 전 조회 1,640
16년 전 조회 2,009
16년 전 조회 2,177
16년 전 조회 1,274
16년 전 조회 1,975
16년 전 조회 1,657
16년 전 조회 2,155
16년 전 조회 1,575
16년 전 조회 2,474
16년 전 조회 2,146
16년 전 조회 6,166
16년 전 조회 2,164
16년 전 조회 3,948
16년 전 조회 1,706
16년 전 조회 2,000
16년 전 조회 2,344
16년 전 조회 2,867
16년 전 조회 2,567
17년 전 조회 3,004
17년 전 조회 3,249
17년 전 조회 3,265
17년 전 조회 2,065
17년 전 조회 1,787
17년 전 조회 1,655
17년 전 조회 1,983
17년 전 조회 1,466
17년 전 조회 2,217
17년 전 조회 1,991
17년 전 조회 1,845
17년 전 조회 1,547
17년 전 조회 2,429
17년 전 조회 3,489
17년 전 조회 2,393
17년 전 조회 1,990
17년 전 조회 1,774
17년 전 조회 2,295
17년 전 조회 4,979
17년 전 조회 1,692
17년 전 조회 2,434
17년 전 조회 2,395
17년 전 조회 2,665
17년 전 조회 2,386
17년 전 조회 4,708
17년 전 조회 3,203
17년 전 조회 3,121
17년 전 조회 1,832
17년 전 조회 1,491
17년 전 조회 4,219
17년 전 조회 1,897
17년 전 조회 1,892
17년 전 조회 2,367
17년 전 조회 2,134
17년 전 조회 1,777
17년 전 조회 4,192
17년 전 조회 2,015
17년 전 조회 3,357
17년 전 조회 3,281
17년 전 조회 1,275
17년 전 조회 2,088
17년 전 조회 1,847
17년 전 조회 2,106
17년 전 조회 2,909
17년 전 조회 3,271
17년 전 조회 3,479
17년 전 조회 3,588
17년 전 조회 1,692
17년 전 조회 1,683
17년 전 조회 2,487
17년 전 조회 2,236
17년 전 조회 2,526
17년 전 조회 3,069
17년 전 조회 3,546
17년 전 조회 2,628
17년 전 조회 1,900
17년 전 조회 3,484
17년 전 조회 3,327
17년 전 조회 3,294
17년 전 조회 4,176
17년 전 조회 2,815
17년 전 조회 2,672
17년 전 조회 2,931
17년 전 조회 3,163
17년 전 조회 2,877
17년 전 조회 1,713
17년 전 조회 2,130
17년 전 조회 1,724
17년 전 조회 2,180
17년 전 조회 2,804
17년 전 조회 8,963
17년 전 조회 3,405
17년 전 조회 4,471
17년 전 조회 2,238
17년 전 조회 3,912
17년 전 조회 1,806
17년 전 조회 1,627