<!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년 전
써먹어야될곳이 생각났네요
감사합니다
감사합니다
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 530 |
|
19년 전 | 1233 | |
| 529 |
|
19년 전 | 1415 | |
| 528 |
|
19년 전 | 1978 | |
| 527 |
사랑과우정
|
19년 전 | 2389 | |
| 526 | 19년 전 | 2871 | ||
| 525 |
|
19년 전 | 2298 | |
| 524 |
|
19년 전 | 1804 | |
| 523 | 19년 전 | 7040 | ||
| 522 |
|
19년 전 | 3729 | |
| 521 | 19년 전 | 2340 | ||
| 520 | 19년 전 | 2378 | ||
| 519 | 19년 전 | 2874 | ||
| 518 |
|
19년 전 | 5784 | |
| 517 |
|
19년 전 | 5559 | |
| 516 |
|
19년 전 | 2263 | |
| 515 |
|
19년 전 | 3303 | |
| 514 | 19년 전 | 2867 | ||
| 513 | 19년 전 | 2220 | ||
| 512 |
개발자관리자
|
19년 전 | 2730 | |
| 511 |
개발자관리자
|
19년 전 | 1585 | |
| 510 |
개발자관리자
|
19년 전 | 1741 | |
| 509 |
개발자관리자
|
19년 전 | 1848 | |
| 508 |
개발자관리자
|
19년 전 | 2009 | |
| 507 |
개발자관리자
|
19년 전 | 1687 | |
| 506 |
개발자관리자
|
19년 전 | 1808 | |
| 505 |
개발자관리자
|
19년 전 | 1776 | |
| 504 |
개발자관리자
|
19년 전 | 1858 | |
| 503 |
개발자관리자
|
19년 전 | 1521 | |
| 502 |
개발자관리자
|
19년 전 | 2652 | |
| 501 | 19년 전 | 2001 | ||
| 500 | 19년 전 | 3240 | ||
| 499 | 19년 전 | 3272 | ||
| 498 | 19년 전 | 2528 | ||
| 497 | 19년 전 | 2602 | ||
| 496 | 19년 전 | 2444 | ||
| 495 | 19년 전 | 2700 | ||
| 494 | 19년 전 | 2680 | ||
| 493 | 19년 전 | 3183 | ||
| 492 | 19년 전 | 2896 | ||
| 491 | 19년 전 | 5310 | ||
| 490 |
|
19년 전 | 2127 | |
| 489 |
|
19년 전 | 2213 | |
| 488 |
|
19년 전 | 2009 | |
| 487 |
|
19년 전 | 1946 | |
| 486 |
|
19년 전 | 1941 | |
| 485 |
|
19년 전 | 2143 | |
| 484 |
|
19년 전 | 3215 | |
| 483 |
|
19년 전 | 3098 | |
| 482 |
|
19년 전 | 2855 | |
| 481 |
|
19년 전 | 2548 | |
| 480 |
|
19년 전 | 2636 | |
| 479 |
|
19년 전 | 2298 | |
| 478 |
|
19년 전 | 2329 | |
| 477 |
개발자관리자
|
19년 전 | 1593 | |
| 476 |
개발자관리자
|
19년 전 | 2311 | |
| 475 |
개발자관리자
|
19년 전 | 2662 | |
| 474 |
개발자관리자
|
19년 전 | 2660 | |
| 473 |
개발자관리자
|
19년 전 | 2969 | |
| 472 | 19년 전 | 2739 | ||
| 471 | 19년 전 | 1733 | ||
| 470 | 19년 전 | 1829 | ||
| 469 |
|
19년 전 | 2731 | |
| 468 |
|
19년 전 | 2222 | |
| 467 |
|
19년 전 | 3997 | |
| 466 |
|
19년 전 | 2513 | |
| 465 | 19년 전 | 2380 | ||
| 464 | 19년 전 | 3528 | ||
| 463 |
|
19년 전 | 3103 | |
| 462 |
|
19년 전 | 2243 | |
| 461 |
|
19년 전 | 3038 | |
| 460 |
|
19년 전 | 2242 | |
| 459 |
|
19년 전 | 3109 | |
| 458 |
|
19년 전 | 3534 | |
| 457 |
|
19년 전 | 5217 | |
| 456 |
|
19년 전 | 3136 | |
| 455 |
스마일미디어
|
19년 전 | 3132 | |
| 454 |
스마일미디어
|
19년 전 | 2722 | |
| 453 |
스마일미디어
|
19년 전 | 2468 | |
| 452 |
스마일미디어
|
19년 전 | 2723 | |
| 451 |
스마일미디어
|
19년 전 | 2450 | |
| 450 |
스마일미디어
|
19년 전 | 2569 | |
| 449 |
스마일미디어
|
19년 전 | 2366 | |
| 448 |
스마일미디어
|
19년 전 | 2693 | |
| 447 | 19년 전 | 2960 | ||
| 446 |
스마일미디어
|
19년 전 | 3245 | |
| 445 |
스마일미디어
|
19년 전 | 7048 | |
| 444 |
스마일미디어
|
19년 전 | 5170 | |
| 443 |
스마일미디어
|
19년 전 | 2429 | |
| 442 |
스마일미디어
|
19년 전 | 5166 | |
| 441 |
스마일미디어
|
19년 전 | 3105 | |
| 440 |
|
19년 전 | 2466 | |
| 439 | 19년 전 | 2160 | ||
| 438 | 19년 전 | 3568 | ||
| 437 |
|
19년 전 | 2870 | |
| 436 |
|
19년 전 | 3250 | |
| 435 |
|
19년 전 | 2893 | |
| 434 | 19년 전 | 3385 | ||
| 433 |
sjsjin
|
19년 전 | 2712 | |
| 432 |
sjsjin
|
19년 전 | 3456 | |
| 431 |
sjsjin
|
19년 전 | 2417 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기