js/jquery禁止頁面回退

OuZeBo發表於2019-01-10
$(function() {
    //防止頁面後退
    history.pushState(null, null, document.URL);
    window.addEventListener('popstate', function () {
        history.pushState(null, null, document.URL);
    });
})    

  

 

相關文章