신속한 업무를 위한 팁
javascript redirection code
MorningPhys
2022. 6. 9. 21:32
접속 페이지를 redirection 시키는 코드
# HTTP Redirect를 클라이언트에서 처리할 때
window.location.replace("http://example.com")
# 사용자의 클릭 이벤트용
window.location.href = "http://example.com";
# history를 이용하여 이동하는 방법
window.history.back();
window.history.go(-1);
728x90
반응형