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,309
16년 전 조회 2,263
16년 전 조회 1,827
16년 전 조회 2,377
16년 전 조회 2,592
16년 전 조회 1,688
16년 전 조회 2,053
16년 전 조회 2,232
16년 전 조회 1,319
16년 전 조회 2,018
16년 전 조회 1,694
16년 전 조회 2,200
16년 전 조회 1,613
16년 전 조회 2,514
16년 전 조회 2,190
16년 전 조회 6,201
16년 전 조회 2,207
16년 전 조회 3,992
16년 전 조회 1,748
16년 전 조회 2,034
16년 전 조회 2,391
17년 전 조회 2,911
17년 전 조회 2,617
17년 전 조회 3,050
17년 전 조회 3,282
17년 전 조회 3,308
17년 전 조회 2,108
17년 전 조회 1,832
17년 전 조회 1,698
17년 전 조회 2,025
17년 전 조회 1,504
17년 전 조회 2,264
17년 전 조회 2,037
17년 전 조회 1,892
17년 전 조회 1,590
17년 전 조회 2,457
17년 전 조회 3,528
17년 전 조회 2,429
17년 전 조회 2,028
17년 전 조회 1,814
17년 전 조회 2,331
17년 전 조회 5,015
17년 전 조회 1,725
17년 전 조회 2,467
17년 전 조회 2,428
17년 전 조회 2,706
17년 전 조회 2,431
17년 전 조회 4,742
17년 전 조회 3,243
17년 전 조회 3,154
17년 전 조회 1,869
17년 전 조회 1,529
17년 전 조회 4,256
17년 전 조회 1,927
17년 전 조회 1,923
17년 전 조회 2,412
17년 전 조회 2,174
17년 전 조회 1,809
17년 전 조회 4,221
17년 전 조회 2,053
17년 전 조회 3,387
17년 전 조회 3,316
17년 전 조회 1,314
17년 전 조회 2,125
17년 전 조회 1,883
17년 전 조회 2,141
17년 전 조회 2,941
17년 전 조회 3,304
17년 전 조회 3,505
17년 전 조회 3,621
17년 전 조회 1,716
17년 전 조회 1,711
17년 전 조회 2,519
17년 전 조회 2,266
17년 전 조회 2,556
17년 전 조회 3,112
17년 전 조회 3,579
17년 전 조회 2,655
17년 전 조회 1,924
17년 전 조회 3,508
17년 전 조회 3,355
17년 전 조회 3,325
17년 전 조회 4,211
17년 전 조회 2,844
17년 전 조회 2,706
17년 전 조회 2,959
17년 전 조회 3,193
17년 전 조회 2,908
17년 전 조회 1,756
17년 전 조회 2,151
17년 전 조회 1,748
17년 전 조회 2,208
17년 전 조회 2,832
17년 전 조회 8,992
17년 전 조회 3,432
17년 전 조회 4,501
17년 전 조회 2,259
17년 전 조회 3,935
17년 전 조회 1,828
17년 전 조회 1,657