리자

타겟(target) 쓰는 법

· 2007-01-16 (화) 09:02:48 · 4962 · 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-01-27 조회 3,806
08-01-26 조회 8,565
08-01-21 조회 3,315
08-01-08 조회 3,767
07-12-21 조회 4,706
07-12-14 조회 4,860
07-12-13 조회 6,307
07-12-10 조회 4,110
07-12-03 조회 3,253
07-12-03 조회 4,295
07-11-27 조회 5,790
07-11-26 조회 2,997
07-11-22 조회 5,113
07-11-21 조회 3,326
07-11-21 조회 1.1만
07-11-12 조회 4,072
07-11-07 조회 4,837
07-10-29 조회 3,584
07-10-25 조회 4,999
07-10-24 조회 3,792
07-10-23 조회 5,982
07-10-09 조회 4,147
07-10-09 조회 4,608
07-10-09 조회 3,203
07-10-09 조회 3,561
07-09-27 조회 3,863
07-09-27 조회 3,090
07-09-15 조회 4,017
07-09-13 조회 2,790
07-09-13 조회 3,252
07-08-07 조회 3,279
07-08-04 조회 3,426
07-07-30 조회 5,427
07-07-29 조회 3,790
07-07-29 조회 4,458
07-07-21 조회 3,105
07-07-20 조회 3,149
07-07-20 조회 4,318
07-07-07 조회 3,387
07-07-06 조회 5,212
07-07-06 조회 5,609
07-07-05 조회 6,747
07-07-04 조회 3,382
07-06-11 조회 3,901
07-06-04 조회 7,244
07-05-28 조회 4,874
07-05-14 조회 6,341
07-05-10 조회 5,288
07-05-09 조회 3,388
07-05-04 조회 3,686
07-04-27 조회 3,329
07-04-25 조회 4,648
07-04-19 조회 3,614
07-04-16 조회 3,221
07-04-13 조회 3,838
07-04-12 조회 4,560
07-04-12 조회 4,773
07-04-11 조회 3,403
07-04-08 조회 5,132
07-04-07 조회 3,237
07-03-29 조회 3,544
07-03-27 조회 3,751
07-03-21 조회 5,149
07-03-15 조회 3,283
07-03-11 조회 3,301
07-03-10 조회 4,939
07-03-09 조회 3,943
07-03-08 조회 4,824
07-03-05 조회 2,945
07-03-02 조회 3,033
07-03-02 조회 3,872
07-02-26 조회 2,922
07-02-26 조회 3,013
07-02-23 조회 4,262
07-02-23 조회 3,329
07-02-23 조회 3,333
07-02-23 조회 3,514
07-02-22 조회 3,152
07-02-21 조회 4,804
07-02-20 조회 4,605
07-02-14 조회 3,751
07-02-12 조회 5,342
07-02-11 조회 4,775
07-02-10 조회 4,079
07-02-09 조회 3,855
07-02-08 조회 4,521
07-02-03 조회 4,115
07-02-02 조회 3,489
07-01-09 조회 3,578
07-01-08 조회 3,948
06-12-26 조회 4,644
06-12-21 조회 3,752
06-12-15 조회 4,162
06-12-15 조회 7,442
06-12-15 조회 3,171
06-12-15 조회 3,190
06-12-15 조회 3,465
06-12-15 조회 3,122
06-12-15 조회 4,540
06-12-15 조회 3,138