iframe크기를 내용에 따라 유동적으로 사이즈를 자동 조정합니다 > script

본문 바로가기
사이트 내 전체검색

script

iframe크기를 내용에 따라 유동적으로 사이즈를 자동 조정합니다

페이지 정보

작성자 서방님 댓글 0건 조회 194회 작성일 07-08-08 16:10

본문

<html>
<head>
    <title>http://www.blueb.co.kr</title>

<script type="text/javascript">
var iframeids=["myframe"]
var iframehide="yes"

var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf("Firefox")).split("/")[1]
var FFextraHeight=getFFVersion>=0.1? 16 : 0 //extra height in px to add to iframe in FireFox 1.0+ browsers

function resizeCaller() {
    var dyniframe=new Array()
    for (i=0; i<iframeids.length; i++){
    if (document.getElementById)
        resizeIframe(iframeids[i])
    if ((document.all || document.getElementById) && iframehide=="no"){
    var tempobj=document.all? document.all[iframeids[i]] : document.getElementById(iframeids[i])
        tempobj.style.display="block"
        }
    }
}

function resizeIframe(frameid){
    var currentfr=document.getElementById(frameid)
    if (currentfr && !window.opera){
        currentfr.style.display="block"
    if (currentfr.contentDocument && currentfr.contentDocument.body.offsetHeight) //ns6 syntax
        currentfr.height = currentfr.contentDocument.body.offsetHeight+FFextraHeight;
    else if (currentfr.Document && currentfr.Document.body.scrollHeight) //ie5+ syntax
        currentfr.height = currentfr.Document.body.scrollHeight;
    if (currentfr.addEventListener)
        currentfr.addEventListener("load", readjustIframe, false)
    else if (currentfr.attachEvent){
        currentfr.detachEvent("onload", readjustIframe) // Bug fix line
        currentfr.attachEvent("onload", readjustIframe)
        }
    }
}

function readjustIframe(loadevt) {
    var crossevt=(window.event)? event : loadevt
    var iframeroot=(crossevt.currentTarget)? crossevt.currentTarget : crossevt.srcElement
    if (iframeroot)
        resizeIframe(iframeroot.id);
}

function loadintoIframe(iframeid, url){
    if (document.getElementById)
        document.getElementById(iframeid).src="url
    }
    if (window.addEventListener)
        window.addEventListener("load", resizeCaller, false)
    else if (window.attachEvent)
        window.attachEvent("onload", resizeCaller)
    else
        window.onload=resizeCaller
</script>
</head>
<body>


<table width=530 border=0>
<tr><td>iframe밖에서 링크시 :</td></tr>
<tr>
    <td style=font-size:9pt;>
    <B>
    | <a href="javascript:loadintoIframe('myframe', '/SRC/javascript/iframe_test1.html')">IFRAME 테스트 1</a>
    | <a href="javascript:loadintoIframe('myframe', '/SRC/javascript/iframe_test2.html')">IFRAME 테스트 2</a>
    | <a href="javascript:loadintoIframe('myframe', '/SRC/javascript/iframe_test3.html')">IFRAME 테스트 3</a>
    | <a href="javascript:loadintoIframe('myframe', '/SRC/javascript/iframe_test4.html')">IFRAME 테스트 4</a>
    |
    </B>
    </td>
</tr>
</table>

<iframe id="myframe" src="/SRC/javascript/iframe_test1.html" scrolling="no" marginwidth="0" marginheight="0" frameborder="1" vspace="0" hspace="0" style="overflow:visible; width:100%; display:none"></iframe>

댓글목록

등록된 댓글이 없습니다.

Total 846건 37 페이지
게시물 검색

회원로그인

접속자집계

오늘
66
어제
302
최대
1,347
전체
155,127
Latest Crypto Fear & Greed Index

그누보드5
Copyright © 서방님.kr All rights reserved.