<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> Sample Script </title>
<meta name="Generator" content="EditPlus">
<!-- [1단계] 아래의 코드를 <head> 와 </head> 사이에 붙여 넣으세요 -->
<script type="text/javascript">
var iframeids=["myframe"] // iframe 에 사용할 ID 를 지정 해 주세요
var iframehide="yes"
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;
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.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>
<!-- [2단계] 아래의 방법으로 iframe 태그를 넣으세요 -->
<iframe id="myframe" src="http://www.naver.com" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:100%; display:none"></iframe>
<!-- 여기에서 주의할 점은 스크립트의 맨 처음에 지정한 iframe 의 아이디를 반드시 사용해야 한다는 점입니다 --->
<!----------------- 여기까지 ----------------->
<p>
위의 페이지는 iframe 태그에 의해 불려진 페이지의 전체 입니다<br>
이처럼 이 스크립트를 사용하면 불려질 문서의 길이가 자동으로 체크되어 그 길이만큼 iframe 이 보여집니다
</body>
</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
<html>
<head>
<title> Sample Script </title>
<meta name="Generator" content="EditPlus">
<!-- [1단계] 아래의 코드를 <head> 와 </head> 사이에 붙여 넣으세요 -->
<script type="text/javascript">
var iframeids=["myframe"] // iframe 에 사용할 ID 를 지정 해 주세요
var iframehide="yes"
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;
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.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>
<!-- [2단계] 아래의 방법으로 iframe 태그를 넣으세요 -->
<iframe id="myframe" src="http://www.naver.com" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:100%; display:none"></iframe>
<!-- 여기에서 주의할 점은 스크립트의 맨 처음에 지정한 iframe 의 아이디를 반드시 사용해야 한다는 점입니다 --->
<!----------------- 여기까지 ----------------->
<p>
위의 페이지는 iframe 태그에 의해 불려진 페이지의 전체 입니다<br>
이처럼 이 스크립트를 사용하면 불려질 문서의 길이가 자동으로 체크되어 그 길이만큼 iframe 이 보여집니다
</body>
</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
댓글 1개
20년 전
써먹어야될곳이 생각났네요
감사합니다
감사합니다
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1030 | 18년 전 | 1774 | ||
| 1029 | 18년 전 | 2206 | ||
| 1028 | 18년 전 | 2623 | ||
| 1027 | 18년 전 | 1782 | ||
| 1026 | 18년 전 | 1512 | ||
| 1025 | 18년 전 | 1529 | ||
| 1024 | 18년 전 | 1456 | ||
| 1023 | 18년 전 | 3216 | ||
| 1022 | 18년 전 | 2907 | ||
| 1021 | 18년 전 | 1664 | ||
| 1020 | 18년 전 | 3404 | ||
| 1019 | 18년 전 | 1832 | ||
| 1018 | 18년 전 | 1482 | ||
| 1017 | 18년 전 | 1941 | ||
| 1016 | 18년 전 | 2089 | ||
| 1015 | 18년 전 | 1623 | ||
| 1014 | 18년 전 | 2336 | ||
| 1013 | 18년 전 | 1991 | ||
| 1012 | 18년 전 | 1600 | ||
| 1011 | 18년 전 | 1779 | ||
| 1010 | 18년 전 | 2032 | ||
| 1009 | 18년 전 | 1790 | ||
| 1008 | 18년 전 | 1592 | ||
| 1007 | 18년 전 | 1651 | ||
| 1006 | 18년 전 | 3122 | ||
| 1005 | 18년 전 | 1986 | ||
| 1004 | 18년 전 | 1858 | ||
| 1003 | 18년 전 | 4363 | ||
| 1002 | 18년 전 | 4988 | ||
| 1001 | 18년 전 | 3154 | ||
| 1000 | 18년 전 | 2900 | ||
| 999 | 18년 전 | 3491 | ||
| 998 | 18년 전 | 2035 | ||
| 997 | 18년 전 | 2382 | ||
| 996 | 18년 전 | 2680 | ||
| 995 | 18년 전 | 2750 | ||
| 994 | 18년 전 | 2341 | ||
| 993 | 18년 전 | 1605 | ||
| 992 | 18년 전 | 3370 | ||
| 991 | 18년 전 | 1969 | ||
| 990 | 18년 전 | 2376 | ||
| 989 | 18년 전 | 2446 | ||
| 988 | 18년 전 | 2874 | ||
| 987 | 18년 전 | 5206 | ||
| 986 |
|
18년 전 | 2481 | |
| 985 |
|
18년 전 | 3323 | |
| 984 | 18년 전 | 4272 | ||
| 983 |
느낌좋은날
|
18년 전 | 2492 | |
| 982 | 18년 전 | 2457 | ||
| 981 | 18년 전 | 4031 | ||
| 980 | 18년 전 | 2744 | ||
| 979 |
Sinpre
|
19년 전 | 2982 | |
| 978 | 19년 전 | 2196 | ||
| 977 | 19년 전 | 2214 | ||
| 976 | 19년 전 | 1990 | ||
| 975 | 19년 전 | 3269 | ||
| 974 | 19년 전 | 2102 | ||
| 973 |
|
19년 전 | 2777 | |
| 972 |
|
19년 전 | 1736 | |
| 971 | 19년 전 | 5307 | ||
| 970 | 19년 전 | 3559 | ||
| 969 | 19년 전 | 4312 | ||
| 968 | 19년 전 | 3054 | ||
| 967 | 19년 전 | 2520 | ||
| 966 | 19년 전 | 3915 | ||
| 965 | 19년 전 | 2639 | ||
| 964 | 19년 전 | 2985 | ||
| 963 | 19년 전 | 2952 | ||
| 962 | 19년 전 | 4172 | ||
| 961 | 19년 전 | 3120 | ||
| 960 | 19년 전 | 3016 | ||
| 959 | 19년 전 | 3665 | ||
| 958 | 19년 전 | 2965 | ||
| 957 | 19년 전 | 2189 | ||
| 956 | 19년 전 | 2218 | ||
| 955 | 19년 전 | 2157 | ||
| 954 | 19년 전 | 2762 | ||
| 953 | 19년 전 | 2469 | ||
| 952 | 19년 전 | 3335 | ||
| 951 | 19년 전 | 3187 | ||
| 950 | 19년 전 | 1817 | ||
| 949 | 19년 전 | 2736 | ||
| 948 | 19년 전 | 7818 | ||
| 947 |
|
19년 전 | 2490 | |
| 946 |
DeepnBlue
|
19년 전 | 3096 | |
| 945 |
pearly
|
19년 전 | 2847 | |
| 944 | 19년 전 | 3010 | ||
| 943 |
|
19년 전 | 2211 | |
| 942 | 19년 전 | 2446 | ||
| 941 |
|
19년 전 | 4067 | |
| 940 | 19년 전 | 2226 | ||
| 939 |
|
19년 전 | 4215 | |
| 938 |
|
19년 전 | 2375 | |
| 937 | 19년 전 | 2071 | ||
| 936 |
|
19년 전 | 2320 | |
| 935 | 19년 전 | 1863 | ||
| 934 |
|
19년 전 | 2395 | |
| 933 | 19년 전 | 2188 | ||
| 932 |
|
19년 전 | 3059 | |
| 931 | 19년 전 | 1845 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기