iframe사용시 높이 자동 조정하기 입니다.

· 10년 전 · 348

<script language='JavaScript' type='text/javascript'>
function resizeFrame(iframeObj){
        var innerBody = iframeObj.contentWindow.document.body;
        oldEvent = innerBody.onclick;
        innerBody.onclick = function(){ resizeFrame(iframeObj, 1);oldEvent; };

        var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
         iframeObj.style.height = innerHeight;

        if( !arguments[1] )        /* 특정 이벤트로 인한 호출시 스크롤을 그냥 둔다. */
                this.scrollTo(1,1);
}
</script>

<iframe width=600 height=600 src="내용의경로" onload="resizeFrame(this)"  frameborder=0></iframe>

|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
10년 전 조회 247
10년 전 조회 264
10년 전 조회 232
10년 전 조회 280
10년 전 조회 288
10년 전 조회 332
10년 전 조회 241
10년 전 조회 260
10년 전 조회 435
10년 전 조회 272
10년 전 조회 331
10년 전 조회 298
10년 전 조회 349
10년 전 조회 455
10년 전 조회 329
10년 전 조회 302
10년 전 조회 322
10년 전 조회 422
10년 전 조회 334
10년 전 조회 284
10년 전 조회 293
10년 전 조회 298
10년 전 조회 254
10년 전 조회 262
10년 전 조회 447