美文网首页
js监听浏览器后退事件

js监听浏览器后退事件

作者: 梦夜空中最亮的星 | 来源:发表于2018-01-19 14:08 被阅读0次

参考链接:https://developer.mozilla.org/zh-CN/docs/Web/API/Window/onpopstate

代码如下:

$(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监听浏览器后退事件

      本文链接:https://www.haomeiwen.com/subject/trsooxtx.html