문제 현상 자바스크립트를 사용해서 다른 페이지로 넘어가고자 한다. 해결 방법 1. window.location.href = 'https://www.tistory.com/'; 2. location.href = 'https://www.tistory.com/'; 참고 - window.location.href 는 현재 접속한 URL을 텍스트 형태로 갖고 있다. - 새 창으로 띄우려면 window.open('https://www.tistory.com/'); 메소드를 활용한다.