1. 程式人生 > >js禁止瀏覽器頁面後退功能

js禁止瀏覽器頁面後退功能

ref code div rip document location log func list

js禁止瀏覽器頁面後退功能:

<script>
    $(function(){
            if(window.location.href.indexOf("/login") > -1) {
                //防止頁面後退
                   history.pushState(null, null, document.URL);
                   window.addEventListener(popstate, function () {
                        history.pushState(
null, null, document.URL); }); } }); </script>

js禁止瀏覽器頁面後退功能