js 捕获浏览器后退事件

Posted F

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 捕获浏览器后退事件相关的知识,希望对你有一定的参考价值。

$(document).ready(function(e) {
            var counter = 0;
            if (window.history && window.history.pushState) {
            window.onpopstate = function () {
                        window.history.pushState(‘forward‘, null, ‘#‘);
                        window.history.forward(1);
                        alert("不可回退");
                    };
            }
            window.history.pushState(‘forward‘, null, ‘#‘); //在IE中必须得有这两行
            window.history.forward(1);
});

 

以上是关于js 捕获浏览器后退事件的主要内容,如果未能解决你的问题,请参考以下文章

js可以获取到用户点击浏览器上前进和后退键的事件的吗?

捕获浏览器的前进后退事件 window.onhashchange 并区别于点击链接

js监听浏览器后退事件

JS中怎么获得浏览器后退事件

JS监听浏览器后退事件

js监听浏览器后退事件