location.href에 타켓 지정 방법 프레임을 쓰실때 생각할 것 세가지 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.lo..