Home JS实现禁用浏览器后退
Post
Cancel

JS实现禁用浏览器后退

这种方式,可以消除后退的所有动作,包括键盘、鼠标手势等产生的后退动作。

1
2
3
4
5
6
7
<script language="javascript">
    //防止页面后退
    history.pushState(null, null, document.URL);
    window.addEventListener('popstate', function () {
        history.pushState(null, null, document.URL);
    });
</script>
This post is licensed under CC BY 4.0 by the author.