<!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년 전
써먹어야될곳이 생각났네요
감사합니다
감사합니다
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 730 |
|
19년 전 | 2716 | |
| 729 |
그레이스웹
|
19년 전 | 3506 | |
| 728 |
|
19년 전 | 2676 | |
| 727 |
|
19년 전 | 2519 | |
| 726 |
|
19년 전 | 2334 | |
| 725 |
|
19년 전 | 2235 | |
| 724 |
|
19년 전 | 2129 | |
| 723 |
|
19년 전 | 4251 | |
| 722 |
|
19년 전 | 2667 | |
| 721 |
|
19년 전 | 2157 | |
| 720 |
|
19년 전 | 2256 | |
| 719 |
|
19년 전 | 2843 | |
| 718 |
|
19년 전 | 1956 | |
| 717 |
|
19년 전 | 3188 | |
| 716 |
|
19년 전 | 2747 | |
| 715 |
|
19년 전 | 2259 | |
| 714 |
|
19년 전 | 1809 | |
| 713 |
|
19년 전 | 2234 | |
| 712 |
|
19년 전 | 2005 | |
| 711 |
|
19년 전 | 1896 | |
| 710 |
|
19년 전 | 2461 | |
| 709 |
|
19년 전 | 2315 | |
| 708 |
|
19년 전 | 3880 | |
| 707 |
|
19년 전 | 3729 | |
| 706 |
|
19년 전 | 2232 | |
| 705 |
|
19년 전 | 3272 | |
| 704 |
|
19년 전 | 1948 | |
| 703 |
|
19년 전 | 2382 | |
| 702 |
|
19년 전 | 2272 | |
| 701 |
홀로남은자
|
19년 전 | 2340 | |
| 700 |
홀로남은자
|
19년 전 | 2174 | |
| 699 | 19년 전 | 2810 | ||
| 698 |
|
19년 전 | 2824 | |
| 697 |
|
19년 전 | 3166 | |
| 696 |
|
19년 전 | 3037 | |
| 695 |
|
19년 전 | 2702 | |
| 694 |
|
19년 전 | 2924 | |
| 693 |
|
19년 전 | 3175 | |
| 692 |
|
19년 전 | 2876 | |
| 691 |
|
19년 전 | 2615 | |
| 690 | 19년 전 | 2918 | ||
| 689 | 19년 전 | 4502 | ||
| 688 | 19년 전 | 2427 | ||
| 687 | 19년 전 | 2444 | ||
| 686 | 19년 전 | 3475 | ||
| 685 | 19년 전 | 3152 | ||
| 684 | 19년 전 | 2802 | ||
| 683 | 19년 전 | 2049 | ||
| 682 | 19년 전 | 1773 | ||
| 681 | 19년 전 | 2875 | ||
| 680 | 19년 전 | 1715 | ||
| 679 | 19년 전 | 2306 | ||
| 678 | 19년 전 | 3954 | ||
| 677 | 19년 전 | 3722 | ||
| 676 | 19년 전 | 3448 | ||
| 675 | 19년 전 | 3405 | ||
| 674 |
|
19년 전 | 1563 | |
| 673 |
|
19년 전 | 1936 | |
| 672 |
|
19년 전 | 1854 | |
| 671 | 19년 전 | 2522 | ||
| 670 | 19년 전 | 4616 | ||
| 669 |
|
19년 전 | 2757 | |
| 668 |
|
19년 전 | 1916 | |
| 667 |
|
19년 전 | 1929 | |
| 666 |
|
19년 전 | 1819 | |
| 665 |
|
19년 전 | 2555 | |
| 664 |
|
19년 전 | 8172 | |
| 663 |
|
19년 전 | 2723 | |
| 662 |
|
19년 전 | 2787 | |
| 661 |
|
19년 전 | 3041 | |
| 660 |
|
19년 전 | 2191 | |
| 659 |
|
19년 전 | 2206 | |
| 658 |
|
19년 전 | 2170 | |
| 657 |
|
19년 전 | 2066 | |
| 656 |
|
19년 전 | 2252 | |
| 655 |
|
19년 전 | 2512 | |
| 654 |
|
19년 전 | 3073 | |
| 653 | 19년 전 | 2328 | ||
| 652 | 19년 전 | 1907 | ||
| 651 |
|
19년 전 | 2828 | |
| 650 | 19년 전 | 4995 | ||
| 649 | 19년 전 | 3494 | ||
| 648 | 19년 전 | 3452 | ||
| 647 | 19년 전 | 2966 | ||
| 646 | 19년 전 | 2389 | ||
| 645 | 19년 전 | 1486 | ||
| 644 | 19년 전 | 3133 | ||
| 643 | 19년 전 | 2010 | ||
| 642 |
|
19년 전 | 5372 | |
| 641 | 19년 전 | 2430 | ||
| 640 | 19년 전 | 3427 | ||
| 639 | 19년 전 | 2852 | ||
| 638 | 19년 전 | 1760 | ||
| 637 | 19년 전 | 3875 | ||
| 636 | 19년 전 | 2414 | ||
| 635 | 19년 전 | 2303 | ||
| 634 |
|
19년 전 | 3022 | |
| 633 |
|
19년 전 | 3294 | |
| 632 | 19년 전 | 2495 | ||
| 631 | 19년 전 | 2256 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기