欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js实现禁止浏览器后退按钮

程序员文章站 2022-03-19 15:01:46
...
      function BanBack(ele) {
        //禁止浏览器后退按钮
        if (window.history && window.history.pushState) {
          $(window).on('popstate', function () {
            window.history.pushState('forward', null, '#');
            window.history.forward(1);
            if (ele) {//特殊处理后退url地址
              window.location.href = ele;
            }
          });
        }
        window.history.pushState('forward', null, '#'); //在IE中必须得有这两行
        window.history.forward(1);
      }
相关标签: window