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,296
16년 전 조회 2,252
16년 전 조회 1,812
16년 전 조회 2,368
16년 전 조회 2,583
16년 전 조회 1,681
16년 전 조회 2,044
16년 전 조회 2,225
16년 전 조회 1,316
16년 전 조회 2,010
16년 전 조회 1,692
16년 전 조회 2,192
16년 전 조회 1,604
16년 전 조회 2,500
16년 전 조회 2,181
16년 전 조회 6,189
16년 전 조회 2,202
16년 전 조회 3,984
16년 전 조회 1,732
16년 전 조회 2,024
16년 전 조회 2,380
17년 전 조회 2,901
17년 전 조회 2,608
17년 전 조회 3,039
17년 전 조회 3,274
17년 전 조회 3,294
17년 전 조회 2,099
17년 전 조회 1,823
17년 전 조회 1,690
17년 전 조회 2,013
17년 전 조회 1,500
17년 전 조회 2,253
17년 전 조회 2,027
17년 전 조회 1,885
17년 전 조회 1,576
17년 전 조회 2,454
17년 전 조회 3,522
17년 전 조회 2,426
17년 전 조회 2,018
17년 전 조회 1,808
17년 전 조회 2,321
17년 전 조회 5,008
17년 전 조회 1,718
17년 전 조회 2,460
17년 전 조회 2,423
17년 전 조회 2,694
17년 전 조회 2,416
17년 전 조회 4,737
17년 전 조회 3,234
17년 전 조회 3,146
17년 전 조회 1,862
17년 전 조회 1,523
17년 전 조회 4,252
17년 전 조회 1,919
17년 전 조회 1,918
17년 전 조회 2,405
17년 전 조회 2,166
17년 전 조회 1,802
17년 전 조회 4,219
17년 전 조회 2,045
17년 전 조회 3,386
17년 전 조회 3,309
17년 전 조회 1,306
17년 전 조회 2,118
17년 전 조회 1,873
17년 전 조회 2,134
17년 전 조회 2,935
17년 전 조회 3,295
17년 전 조회 3,501
17년 전 조회 3,615
17년 전 조회 1,708
17년 전 조회 1,706
17년 전 조회 2,513
17년 전 조회 2,261
17년 전 조회 2,549
17년 전 조회 3,100
17년 전 조회 3,572
17년 전 조회 2,646
17년 전 조회 1,923
17년 전 조회 3,505
17년 전 조회 3,354
17년 전 조회 3,316
17년 전 조회 4,204
17년 전 조회 2,839
17년 전 조회 2,703
17년 전 조회 2,951
17년 전 조회 3,189
17년 전 조회 2,901
17년 전 조회 1,747
17년 전 조회 2,148
17년 전 조회 1,742
17년 전 조회 2,203
17년 전 조회 2,827
17년 전 조회 8,984
17년 전 조회 3,429
17년 전 조회 4,496
17년 전 조회 2,254
17년 전 조회 3,928
17년 전 조회 1,823
17년 전 조회 1,651