본문 바로가기

프로그래밍/제이쿼리

뒤로가기 막기


$
(function () {

// 뒤로가기 막기.
history.pushState(null, document.title, location.href);
window.addEventListener('popstate', function(event) {
// alert("이전페이지로 돌아갈 수 없습니다.");
history.pushState(null, document.title, location.href);
});


});

출처 http://oofbird.net/17