1. 程式人生 > >js禁止瀏覽器回退

js禁止瀏覽器回退

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