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);
              });

猜你喜欢

转载自blog.csdn.net/qq_41594146/article/details/84986785
今日推荐