1、伪操作
window.history.forward(1);
也行 ,也能用,体验不太好,放在点击跳转的页面, 而不是被跳转的页面
2、终极方案
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
无所遁形,被跳转的页面
网友评论