Lee-sungheon/honey-blog

post/prevent-going-back

Opened this issue · 1 comments

[React + Javascript] 뒤로가기 막기(이벤트 최소화)

사용자가 뒤로가기를 눌렀을 때, 이를 막는 팝업을 띄우는 이슈를 처리할 일이 생겼다.jshistory.pushState(null, null, location.href);window.onpopstate = function(event) { history.go(1); };구글링을 통해 찾아본 결과, 위와 같은 방법이 가장 널리 쓰이는 뒤로가기 막기 방법 중 하나였다.이 방법을 Rea

http://localhost:3000/post/prevent-going-back