javascript - 브라우저 뒤로가기 버튼 눌렀을 경우, 질문하기
마스터욱
0
25
0
0
2019-03-19 12:32:09
if (window.history && history.pushState) {
addEventListener('load', function() {
history.pushState(null, null, null);
addEventListener('popstate', function() {
var stayOnPage = confirm("페이지를 벗어나시겠습니까?");
if (!stayOnPage) {
history.pushState(null, null, null);
} else {
history.back();
}
});
});
}