프레임을 쓰실때 생각할 것 세가지
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>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 59 | ||
| 8229 | 9년 전 | 60 | ||
| 8228 |
커네드커네드
|
9년 전 | 107 | |
| 8227 | 9년 전 | 114 | ||
| 8226 | 9년 전 | 151 | ||
| 8225 | 9년 전 | 140 | ||
| 8224 | 9년 전 | 138 | ||
| 8223 | 9년 전 | 109 | ||
| 8222 |
|
9년 전 | 172 | |
| 8221 | 9년 전 | 79 | ||
| 8220 | 9년 전 | 87 | ||
| 8219 | 9년 전 | 93 | ||
| 8218 | 9년 전 | 124 | ||
| 8217 |
star3840
|
9년 전 | 103 | |
| 8216 | 9년 전 | 149 | ||
| 8215 | 9년 전 | 100 | ||
| 8214 | 9년 전 | 217 | ||
| 8213 | 9년 전 | 145 | ||
| 8212 | 9년 전 | 73 | ||
| 8211 | 9년 전 | 233 | ||
| 8210 | 9년 전 | 234 | ||
| 8209 | 9년 전 | 325 | ||
| 8208 | 9년 전 | 201 | ||
| 8207 | 9년 전 | 215 | ||
| 8206 |
|
9년 전 | 173 | |
| 8205 | 9년 전 | 157 | ||
| 8204 | 9년 전 | 120 | ||
| 8203 | 9년 전 | 221 | ||
| 8202 | 9년 전 | 132 | ||
| 8201 | 9년 전 | 168 | ||
| 8200 | 9년 전 | 146 | ||
| 8199 | 9년 전 | 196 | ||
| 8198 | 9년 전 | 162 | ||
| 8197 | 9년 전 | 150 | ||
| 8196 | 9년 전 | 535 | ||
| 8195 | 9년 전 | 145 | ||
| 8194 | 9년 전 | 273 | ||
| 8193 | 9년 전 | 145 | ||
| 8192 | 9년 전 | 174 | ||
| 8191 | 9년 전 | 127 | ||
| 8190 | 9년 전 | 117 | ||
| 8189 | 9년 전 | 178 | ||
| 8188 | 9년 전 | 121 | ||
| 8187 | 9년 전 | 130 | ||
| 8186 | 9년 전 | 134 | ||
| 8185 | 9년 전 | 300 | ||
| 8184 | 9년 전 | 96 | ||
| 8183 | 9년 전 | 313 | ||
| 8182 | 9년 전 | 156 | ||
| 8181 | 9년 전 | 117 | ||
| 8180 | 9년 전 | 685 | ||
| 8179 | 9년 전 | 476 | ||
| 8178 | 9년 전 | 289 | ||
| 8177 |
kiplayer
|
9년 전 | 301 | |
| 8176 | 9년 전 | 338 | ||
| 8175 | 9년 전 | 210 | ||
| 8174 | 9년 전 | 225 | ||
| 8173 | 9년 전 | 331 | ||
| 8172 | 9년 전 | 182 | ||
| 8171 | 9년 전 | 170 | ||
| 8170 | 9년 전 | 285 | ||
| 8169 |
커네드커네드
|
9년 전 | 248 | |
| 8168 | 9년 전 | 307 | ||
| 8167 | 9년 전 | 311 | ||
| 8166 | 9년 전 | 222 | ||
| 8165 | 9년 전 | 153 | ||
| 8164 | 9년 전 | 290 | ||
| 8163 | 9년 전 | 274 | ||
| 8162 | 9년 전 | 285 | ||
| 8161 | 9년 전 | 281 | ||
| 8160 |
|
9년 전 | 478 | |
| 8159 | 9년 전 | 404 | ||
| 8158 | 9년 전 | 223 | ||
| 8157 | 9년 전 | 357 | ||
| 8156 | 9년 전 | 269 | ||
| 8155 | 9년 전 | 244 | ||
| 8154 |
00년생용띠
|
9년 전 | 589 | |
| 8153 | 9년 전 | 221 | ||
| 8152 |
|
9년 전 | 394 | |
| 8151 | 9년 전 | 394 | ||
| 8150 | 9년 전 | 487 | ||
| 8149 |
Jangfolk
|
9년 전 | 329 | |
| 8148 | 9년 전 | 156 | ||
| 8147 | 9년 전 | 362 | ||
| 8146 | 9년 전 | 424 | ||
| 8145 | 9년 전 | 363 | ||
| 8144 | 9년 전 | 329 | ||
| 8143 | 9년 전 | 179 | ||
| 8142 | 9년 전 | 418 | ||
| 8141 | 9년 전 | 366 | ||
| 8140 | 9년 전 | 917 | ||
| 8139 | 9년 전 | 248 | ||
| 8138 |
전갈자리남자
|
9년 전 | 378 | |
| 8137 | 9년 전 | 374 | ||
| 8136 | 9년 전 | 730 | ||
| 8135 |
|
9년 전 | 780 | |
| 8134 |
PlayPixel
|
9년 전 | 496 | |
| 8133 |
|
9년 전 | 427 | |
| 8132 | 9년 전 | 438 | ||
| 8131 | 9년 전 | 799 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기