리자

타겟(target) 쓰는 법

· 2007-01-16 (화) 09:02:48 · 4961 · 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건
+
제목 글쓴이 날짜 조회
10-09-25 조회 2,710
10-09-19 조회 2,742
10-09-15 조회 2,746
10-09-15 조회 4,149
10-09-15 조회 3,368
10-09-15 조회 2,479
10-09-07 조회 3,593
10-08-27 조회 4,049
10-06-11 조회 4,209
10-05-31 조회 2,458
10-02-27 조회 4,991
10-02-09 조회 3,739
09-10-10 조회 7,331
09-03-19 조회 3,173
09-02-09 조회 3,450
09-02-09 조회 4,522
08-11-01 조회 2,901
08-09-29 조회 4,553
08-09-26 조회 3,509
08-09-26 조회 3,586
08-09-26 조회 2,721
08-09-26 조회 3,763
08-09-26 조회 3,485
08-09-26 조회 4,251
08-09-18 조회 3,563
08-09-09 조회 3,214
08-08-28 조회 2,755
08-07-06 조회 3,533
08-05-21 조회 4,687
08-05-13 조회 4,527
08-04-17 조회 4,901
08-02-19 조회 3,529
08-01-18 조회 3,833
08-01-10 조회 3,804
07-10-22 조회 3,642
07-10-09 조회 4,286
07-10-03 조회 3,498
07-07-06 조회 4,207
07-07-06 조회 4,421
07-07-06 조회 4,031
07-06-28 조회 3,555
07-06-05 조회 3,560
07-06-05 조회 4,102
07-05-30 조회 3,270
07-05-02 조회 3,680
07-04-15 조회 5,101
07-04-11 조회 3,619
07-04-05 조회 3,910
07-03-31 조회 3,144
07-03-31 조회 4,119
07-03-30 조회 3,722
07-03-24 조회 3,997
07-03-22 조회 3,650
07-03-12 조회 4,399
07-02-16 조회 3,256
07-02-14 조회 5,157
07-02-10 조회 3,985
07-02-09 조회 4,371
07-01-19 조회 4,033
07-01-16 조회 4,962
06-12-16 조회 5,826
06-11-30 조회 3,583
06-11-25 조회 3,684
06-10-15 조회 5,054
06-09-26 조회 5,299
06-09-26 조회 5,417
06-09-22 조회 4,250
06-09-21 조회 3,534
06-09-21 조회 3,623
06-09-02 조회 3,476
06-08-08 조회 5,106
06-07-20 조회 3,708
06-07-17 조회 3,338
06-07-13 조회 4,160
06-07-11 조회 3,456
06-07-11 조회 3,460
06-07-11 조회 3,826
06-06-29 조회 6,041
06-06-19 조회 6,443
06-06-02 조회 3,492
06-05-24 조회 4,982
06-05-14 조회 7,758
06-05-08 조회 3,872
06-02-02 조회 5,447
05-12-16 조회 4,492
05-12-05 조회 5,143
05-06-28 조회 4,094
05-04-11 조회 4,045
05-04-11 조회 4,239
05-04-11 조회 3,304
05-03-13 조회 3,209
05-03-12 조회 4,291
04-12-08 조회 7,767
04-12-01 조회 5,170
04-11-28 조회 3,326
04-11-28 조회 3,172
04-08-05 조회 5,600
04-08-05 조회 4,945
04-08-05 조회 5,549