首页 > 代码库 > 利用js实现网页禁止后退

利用js实现网页禁止后退

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

  

利用js实现网页禁止后退