js/jquery禁止页面回退

$(function() {
    //防止页面后退
    history.pushState(null, null, document.URL);
    window.addEventListener('popstate', function () {
        history.pushState(null, null, document.URL);
    });
})    

  

 

posted @ 2019-01-10 15:36  OuZeBo  阅读(770)  评论(0编辑  收藏  举报