1. 程式人生 > >html 禁止瀏覽器後退

html 禁止瀏覽器後退

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