프로그램
2008. 8. 17.
target(href) 타겟사용법
출처 : :: 뚱어 :: 나를 뛰어넘는 도전 / http://www.missjang.com/99 프레임을 쓰실때 생각할 것 세가지 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'; 새창을 열게해준 창의 주소를 바꾸고 새창을 끈다. 새창을 열게해준 창의 주소를 새로고침하고 새창을 끈다 다른 프래임의 주소를 바꾸게 하려면 프래임 구조상 상위 프래임의 주소를 바꾸게 하려면 타겟이 지정된..