0
点赞
收藏
分享

微信扫一扫

Jquery禁止浏览器的前进后退

古得曼_63b6 2022-11-30 阅读 91


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

 

举报

相关推荐

0 条评论