«

禁用浏览器后退

emer 发布于 2018-3-21 11:53   2227 次阅读     


 <script language="javascript">
        //防止页面后退
        history.pushState(null, null, document.URL);
        window.addEventListener('popstate', function () {
            history.pushState(null, null, document.URL);
        });
    </script>