同过js使浏览器后退键失效

来源:互联网 发布:win7本地网络连接红叉 编辑:程序博客网 时间:2024/06/15 06:34

使用Jquery让浏览器的后退键 失效:

jQuery(document).ready(function () {
                  if (window.history && window.history.pushState) {
                      $(window).on('popstate', function () {
                /// 当点击浏览器的 后退和前进按钮 时才会被触发,
                          window.history.pushState('forward', null, '');
                          window.history.forward(1);
                      });
                  }
          //
                  window.history.pushState('forward', null, '');  //在IE中必须得有这两行
                  window.history.forward(1);
              });


原创粉丝点击