码迷,mamicode.com
首页 > Web开发 > 详细

js监听浏览器后退事件

时间:2019-04-02 14:14:19      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:弹框   www.   ready   cti   count   pop   counter   http   for   

参考链接: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);

});

如果在浏览器执行了回退操作,则会触发页面弹出“不可回退”弹框,当然这里可以进行你所需要的不同的处理;



原文:https://www.jianshu.com/p/8916c3d8e07f

js监听浏览器后退事件

标签:弹框   www.   ready   cti   count   pop   counter   http   for   

原文地址:https://www.cnblogs.com/showcase/p/10642203.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!