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

· 10년 전 · 1559

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

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

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 1,642
10년 전 조회 1,600
10년 전 조회 1,600
10년 전 조회 1,647
10년 전 조회 1,620
10년 전 조회 1,682
10년 전 조회 1,691
10년 전 조회 1,673
10년 전 조회 1,831
10년 전 조회 1,834
10년 전 조회 1,627
10년 전 조회 1,922
10년 전 조회 2,239
10년 전 조회 1,706
10년 전 조회 1,972
10년 전 조회 1,927
10년 전 조회 1,778
10년 전 조회 1,754
10년 전 조회 1,698
10년 전 조회 1,804
10년 전 조회 1,559
10년 전 조회 1,638
10년 전 조회 1,851
10년 전 조회 1,669
10년 전 조회 1,622
10년 전 조회 1,626
10년 전 조회 1,639
10년 전 조회 1,668
10년 전 조회 1,646
10년 전 조회 1,665
10년 전 조회 1,628
10년 전 조회 1,794
10년 전 조회 1,603
10년 전 조회 1,619
10년 전 조회 1,734
10년 전 조회 2,413
10년 전 조회 1,676
10년 전 조회 1,651
10년 전 조회 1,737
10년 전 조회 1,633
10년 전 조회 1,812
10년 전 조회 1,721
10년 전 조회 1,651
10년 전 조회 1,632
10년 전 조회 1,663
10년 전 조회 1,665
10년 전 조회 1,597
10년 전 조회 1,543
10년 전 조회 1,530
10년 전 조회 1,560
10년 전 조회 1,979
10년 전 조회 1,580
10년 전 조회 1,698
10년 전 조회 1,628
10년 전 조회 1,872
10년 전 조회 1,697
10년 전 조회 1,593
10년 전 조회 1,639
10년 전 조회 1,681
10년 전 조회 1,788
10년 전 조회 1,736
10년 전 조회 1,618
10년 전 조회 1,651
10년 전 조회 2,612
10년 전 조회 2,493
10년 전 조회 2,042
10년 전 조회 2,613
10년 전 조회 1,676
10년 전 조회 2,080
10년 전 조회 2,319
10년 전 조회 1,830
10년 전 조회 1,756
10년 전 조회 1,722
10년 전 조회 1,594
10년 전 조회 1,768
10년 전 조회 1,773
10년 전 조회 2,280
10년 전 조회 1,689
10년 전 조회 1,786
10년 전 조회 1,758
10년 전 조회 2,693
10년 전 조회 1,820
10년 전 조회 1,699
10년 전 조회 1,797
10년 전 조회 1,816
10년 전 조회 1,891
10년 전 조회 1,693
10년 전 조회 1,781
10년 전 조회 2,116
10년 전 조회 2,058
10년 전 조회 2,031
10년 전 조회 1,596
10년 전 조회 1,693
10년 전 조회 1,646
10년 전 조회 1,607
10년 전 조회 1,819
10년 전 조회 1,608
10년 전 조회 1,909
10년 전 조회 1,586
10년 전 조회 1,915