타겟(target) 쓰는 법 입니다.

· 2015-11-20 (금) 16:59:57 · 2511

프레임을 쓰실때 생각할 것 세가지
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>

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
15-11-20 조회 2,415
15-11-20 조회 2,421
15-11-20 조회 2,512
15-11-18 조회 2,537
15-11-18 조회 2,585
15-11-18 조회 2,493
15-11-17 조회 2,752
15-11-17 조회 2,523
15-11-17 조회 2,473
15-11-16 조회 2,531
15-11-16 조회 2,517
15-11-16 조회 2,684
15-11-15 조회 2,713
15-11-15 조회 2,514
15-11-15 조회 2,630
15-11-09 조회 2,802
15-11-09 조회 2,591
15-11-09 조회 2,659
15-11-06 조회 3,241
15-11-05 조회 2,679
15-11-05 조회 2,616
15-11-05 조회 2,723
15-11-04 조회 2,677
15-11-04 조회 2,631
15-11-04 조회 2,638
15-11-04 조회 2,911
15-11-04 조회 2,717
15-11-03 조회 2,743
15-11-02 조회 2,743
15-11-02 조회 2,529
15-11-02 조회 2,558
15-10-31 조회 2,482
15-10-27 조회 2,719
15-10-23 조회 2,634
15-10-23 조회 2,682
15-10-19 조회 3,780
15-10-15 조회 3,385
15-08-03 조회 3,084
15-07-29 조회 2,902
15-07-12 조회 3,337
15-05-07 조회 4,956
15-05-06 조회 4,593
15-05-06 조회 5,264
15-04-04 조회 4,378
15-04-04 조회 3,992
15-04-01 조회 5,619
15-02-10 조회 4,359
15-01-31 조회 4,372
15-01-23 조회 4,036
14-12-30 조회 3,577
14-12-23 조회 3,779
14-12-02 조회 4,172
14-10-17 조회 4,596
14-10-17 조회 4,745
14-10-07 조회 4,085
14-10-07 조회 5,231
14-10-04 조회 4,372
14-09-24 조회 4,646
14-09-24 조회 4,607
14-09-24 조회 4,104
14-09-23 조회 3,847
14-09-22 조회 3,578
14-09-21 조회 3,981
14-09-21 조회 4,197
14-09-21 조회 3,661
14-09-20 조회 4,222
14-09-19 조회 3,812
14-09-19 조회 3,455
14-09-19 조회 3,987
14-09-19 조회 3,682
14-09-18 조회 3,484
14-09-18 조회 3,932
14-09-18 조회 4,222
14-09-18 조회 3,853
14-09-18 조회 3,772
14-09-18 조회 3,808
14-09-18 조회 3,904
14-09-18 조회 4,647
14-09-17 조회 3,688
14-09-15 조회 3,770
14-09-11 조회 4,046
14-08-26 조회 3,936
14-08-26 조회 3,661
14-08-26 조회 3,401
14-08-26 조회 3,913
14-08-26 조회 3,802
14-08-26 조회 3,647
14-08-26 조회 3,761
14-08-26 조회 3,835
14-08-26 조회 3,620
14-08-26 조회 3,830
14-08-26 조회 3,791
14-08-26 조회 3,769
14-08-26 조회 3,840
14-08-26 조회 3,570
14-08-26 조회 3,573
14-08-26 조회 3,762
14-08-26 조회 3,460
14-08-26 조회 3,533
14-08-26 조회 3,334