리자

타겟(target) 쓰는 법

· 2007-01-16 (화) 09:02:48 · 4959 · 2
프레임을 쓰실때 생각할 것 세가지
1. frame_name.location = 'url.php';
또는 frame_name.location.href = 'url.php';
또는 frame_name.location.replace('url.php')
2. parent.frame_name.location = 'url.php';
3. opener.parent.frame_name.location = 'url.php';

새창을 열게해준 창의 주소를 바꾸고 새창을 끈다.
<script>
opener.location.href = 'url.php';
self.close();
</script>

새창을 열게해준 창의 주소를 새로고침하고 새창을 끈다
<script>
opener.location.reload();
self.close();
</script>

다른 프래임의 주소를 바꾸게 하려면
<script>
frame_name.location.href = 'url.php';
</script>

프래임 구조상 상위 프래임의 주소를 바꾸게 하려면
<script>
parent.location.href = 'url.php';
</script>

타겟이 지정된 프레임을 바꾼다.(타겟하나)
<script>
parent.target(타겟).location.href = 'url.php';
</script>

타겟이 지정된 프레임을 바꾼다.(타겟둘)
<script>
parent.target1(타겟1).location.href = 'url1.php';
parent.target2(타겟2).location.href = 'url2.php';
</script>

타겟이 지정된 프레임을 바꾼다.(타겟셋)
<script>
parent.target1(타겟1).location.href = 'url1.php';
parent.target2(타겟2).location.href = 'url2.php';
parent.target3(타겟3).location.href = 'url3.php';
</script>

타겟이 지정된 프레임두개를 클릭으로 바꾸려면
<script>
function target_frame(url1, url2)
{
parent.top_frame.location.href = url1;
parent.main_frame.location.href = url2;
}
</script>
<a href="javascript:target_frame('main_menu.html', '$go_url');"> 확인 </a>

로그인페이지 에선
<script>
parent.top_frame.location.href = '../main.html'; //main.html는 로그인페이지 보다 상위디렉토리에 있다.
parent.main_frame.location.href = '$go_url';
</script>

로그인페이지를 새창으로 띄웠다면
<script>
opener.parent.top_frame.location.href = '../main.html';
opener.parent.main_frame.location.href = '$go_url';
self.close();
</script>


[펌] http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=tipntech&wr_id=5317&sfl=&stx=&sst=wr_hit&sod=desc&sop=and&page=36<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
|

댓글 2개

2007-02-03 (토) 10:36:11
와 좋은 정보 감사합니다.
고맙습니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
08-04-17 조회 4,314
08-03-14 조회 3,202
08-03-08 조회 3,022
08-03-06 조회 2,993
08-03-03 조회 4,285
08-02-20 조회 2,972
08-02-15 조회 3,886
08-02-11 조회 5,041
08-02-09 조회 5,753
08-02-05 조회 3,816
08-01-14 조회 6,627
08-01-11 조회 7,060
08-01-04 조회 1.1만
07-12-10 조회 4,963
07-12-10 조회 3,830
07-12-04 조회 3,371
07-11-29 조회 3,546
07-11-27 조회 3,902
07-11-23 조회 4,502
07-11-23 조회 4,230
07-11-13 조회 4,361
07-10-19 조회 4,819
07-10-17 조회 5,875
07-10-03 조회 4,945
07-10-02 조회 8,796
07-10-02 조회 4,453
07-09-09 조회 3,418
07-07-29 조회 4,308
07-07-28 조회 4,534
07-07-26 조회 4,439
07-06-19 조회 1.1만
07-06-17 조회 3,603
07-06-15 조회 4,102
07-05-31 조회 3,159
07-05-09 조회 5,316
07-05-04 조회 3,163
07-05-04 조회 3,510
07-04-28 조회 6,408
07-04-26 조회 4,652
07-04-14 조회 5,295
07-04-13 조회 3,712
07-04-12 조회 5,907
07-03-27 조회 3,844
07-03-19 조회 3,536
07-03-13 조회 4,618
07-03-07 조회 4,769
07-03-07 조회 3,282
07-02-25 조회 3,638
07-02-21 조회 4,529
07-02-18 조회 5,048
07-02-12 조회 3,393
07-02-02 조회 4,508
07-01-28 조회 6,121
07-01-27 조회 5,629
07-01-25 조회 3,994
07-01-21 조회 4,627
07-01-19 조회 6,571
07-01-19 조회 8,029
07-01-13 조회 3,485
07-01-09 조회 5,123
06-12-27 조회 3,526
06-11-24 조회 3,646
06-11-18 조회 4,164
06-10-17 조회 5,484
06-10-01 조회 4,405
06-09-26 조회 4,285
06-09-25 조회 4,609
06-09-25 조회 4,317
06-09-22 조회 4,850
06-09-22 조회 3,622
06-09-22 조회 4,451
06-09-13 조회 5,280
06-08-27 조회 4,883
06-08-26 조회 6,263
06-08-26 조회 5,569
06-08-23 조회 5,064
06-07-28 조회 7,165
06-07-24 조회 4,621
06-07-23 조회 5,401
06-07-21 조회 5,161
06-07-19 조회 3,042
06-07-19 조회 2,956
06-07-11 조회 3,615
06-07-11 조회 3,909
06-07-11 조회 4,477
06-07-11 조회 4,941
06-07-11 조회 3,567
06-07-11 조회 9,189
06-07-11 조회 4,049
06-07-11 조회 3,281
06-07-11 조회 3,331
06-07-11 조회 3,259
06-07-11 조회 3,060
06-07-07 조회 4,105
06-06-25 조회 4,455
06-06-15 조회 4,448
06-06-14 조회 4,940
06-06-11 조회 3,522
06-06-10 조회 3,903
06-06-09 조회 3,487