js禁止浏览器后退按钮操作
2019-01-21 本文已影响7人
仰望天空的人
1、伪操作
window.history.forward(1);
也行 ,也能用,体验不太好,放在点击跳转的页面, 而不是被跳转的页面
2、终极方案
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
无所遁形,被跳转的页面