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

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

프레임을 쓰실때 생각할 것 세가지
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,427
15-11-20 조회 2,429
15-11-20 조회 2,528
15-11-18 조회 2,550
15-11-18 조회 2,594
15-11-18 조회 2,515
15-11-17 조회 2,763
15-11-17 조회 2,528
15-11-17 조회 2,479
15-11-16 조회 2,541
15-11-16 조회 2,527
15-11-16 조회 2,705
15-11-15 조회 2,723
15-11-15 조회 2,532
15-11-15 조회 2,647
15-11-09 조회 2,818
15-11-09 조회 2,607
15-11-09 조회 2,675
15-11-06 조회 3,254
15-11-05 조회 2,689
15-11-05 조회 2,621
15-11-05 조회 2,736
15-11-04 조회 2,686
15-11-04 조회 2,644
15-11-04 조회 2,653
15-11-04 조회 2,932
15-11-04 조회 2,729
15-11-03 조회 2,747
15-11-02 조회 2,758
15-11-02 조회 2,548
15-11-02 조회 2,570
15-10-31 조회 2,490
15-10-27 조회 2,736
15-10-23 조회 2,649
15-10-23 조회 2,696
15-10-19 조회 3,793
15-10-15 조회 3,402
15-08-03 조회 3,086
15-07-29 조회 2,908
15-07-12 조회 3,349
15-05-07 조회 4,963
15-05-06 조회 4,595
15-05-06 조회 5,277
15-04-04 조회 4,385
15-04-04 조회 4,004
15-04-01 조회 5,625
15-02-10 조회 4,371
15-01-31 조회 4,383
15-01-23 조회 4,048
14-12-30 조회 3,591
14-12-23 조회 3,789
14-12-02 조회 4,174
14-10-17 조회 4,612
14-10-17 조회 4,757
14-10-07 조회 4,097
14-10-07 조회 5,258
14-10-04 조회 4,380
14-09-24 조회 4,660
14-09-24 조회 4,621
14-09-24 조회 4,116
14-09-23 조회 3,880
14-09-22 조회 3,587
14-09-21 조회 3,987
14-09-21 조회 4,219
14-09-21 조회 3,679
14-09-20 조회 4,238
14-09-19 조회 3,817
14-09-19 조회 3,469
14-09-19 조회 3,995
14-09-19 조회 3,688
14-09-18 조회 3,495
14-09-18 조회 3,941
14-09-18 조회 4,236
14-09-18 조회 3,855
14-09-18 조회 3,786
14-09-18 조회 3,830
14-09-18 조회 3,917
14-09-18 조회 4,664
14-09-17 조회 3,699
14-09-15 조회 3,784
14-09-11 조회 4,059
14-08-26 조회 3,954
14-08-26 조회 3,670
14-08-26 조회 3,412
14-08-26 조회 3,926
14-08-26 조회 3,807
14-08-26 조회 3,657
14-08-26 조회 3,772
14-08-26 조회 3,842
14-08-26 조회 3,628
14-08-26 조회 3,836
14-08-26 조회 3,803
14-08-26 조회 3,781
14-08-26 조회 3,846
14-08-26 조회 3,583
14-08-26 조회 3,591
14-08-26 조회 3,775
14-08-26 조회 3,473
14-08-26 조회 3,547
14-08-26 조회 3,342