• js监听浏览器后退事件


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

  • 相关阅读:
    快速排序
    09-HQL:Group、Order
    08-表属性操作
    07-数据导出及动态分区
    06-数据加载
    05-Hive数据操作
    04-表操作2
    03-表操作1
    [原创]IPV4分组的格式
    mysql中having和where的区别
  • 原文地址:https://www.cnblogs.com/showcase/p/10642203.html
Copyright © 2020-2023  润新知