자바스크립트 페이지 이동 1. submit : 일반 사용예제 1 2 3 4 5 6 7 8 function form_submit() { document.id.action="link_page.html"; document.id.submit(); } cs 2. href : 값을 정해야하는 프로퍼티 사용예제 1 2 3 4 5 6 7 function page_href() { location.href = "test.html"; } cs 3. replace : 파라미터로 동작하는 메소드 사용예제 1 2 3 4 5 6 7 function page_replace() { location.replace("test.html"); } cs