리자

타겟(target) 쓰는 법

· 2007-01-16 (화) 09:02:48 · 4948 · 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건
+
제목 글쓴이 날짜 조회
07-07-16 조회 3,055
07-07-06 조회 2,918
07-07-06 조회 3,378
07-06-23 조회 3,204
07-06-16 조회 2,687
07-05-20 조회 4,205
07-05-09 조회 3,374
07-05-09 조회 6,021
07-05-04 조회 2,601
07-04-30 조회 9,735
07-04-27 조회 4,253
07-04-26 조회 3,368
07-04-25 조회 5,155
07-04-18 조회 7,704
07-04-13 조회 3,034
07-04-12 조회 6,547
07-04-12 조회 4,953
07-04-12 조회 3,273
07-04-11 조회 5,655
07-04-05 조회 6,300
07-03-24 조회 4,350
07-03-20 조회 3,656
07-03-18 조회 3,912
07-03-18 조회 4,687
07-03-17 조회 4,172
07-03-16 조회 4,078
07-03-15 조회 5,221
07-03-13 조회 5,315
07-03-13 조회 3,516
07-03-08 조회 4,440
07-03-08 조회 3,915
07-03-08 조회 3,225
07-03-08 조회 4,092
07-03-05 조회 4,323
07-03-04 조회 2,854
07-03-01 조회 5,890
07-02-28 조회 3,174
07-02-27 조회 4,346
07-02-26 조회 3,253
07-02-26 조회 2,949
07-02-23 조회 3,601
07-02-23 조회 3,567
07-02-22 조회 3,951
07-02-22 조회 3,747
07-02-19 조회 3,774
07-02-17 조회 4,792
07-02-14 조회 8,096
07-02-12 조회 3,859
07-02-10 조회 3,473
07-02-02 조회 3,706
07-01-31 조회 3,368
07-01-29 조회 3,217
07-01-25 조회 4,994
07-01-21 조회 3,165
07-01-19 조회 2,968
06-12-15 조회 3,955
06-12-15 조회 4,365
06-12-15 조회 2,862
06-12-15 조회 4,412
06-12-15 조회 3,279
06-12-15 조회 3,995
06-12-15 조회 2,961
06-12-15 조회 2,677
06-12-15 조회 4,557
06-12-15 조회 3,109
06-12-15 조회 3,182
06-12-07 조회 4,631
06-12-07 조회 3,923
06-12-04 조회 4,542
06-11-27 조회 3,619
06-11-21 조회 3,935
06-11-15 조회 3,369
06-11-04 조회 3,256
06-10-29 조회 3,911
06-10-13 조회 3,773
06-10-13 조회 4,142
06-10-13 조회 4,089
06-10-12 조회 5,295
06-10-12 조회 4,215
06-10-04 조회 3,700
06-10-02 조회 4,489
06-09-29 조회 2,980
06-09-26 조회 3,318
06-09-26 조회 3,573
06-09-26 조회 3,211
06-09-26 조회 3,371
06-09-26 조회 4,272
06-09-25 조회 4,572
06-09-22 조회 4,888
06-09-22 조회 3,470
06-09-21 조회 4,215
06-09-21 조회 4,207
06-09-21 조회 3,476
06-09-21 조회 5,140
06-09-21 조회 3,645
06-09-21 조회 3,406
06-09-20 조회 2,937
06-09-15 조회 3,074
06-09-13 조회 3,375
06-09-11 조회 3,194