有时,需要禁止用户返回上一页面,这里总结了防止页面后退的好办法:
//防止页面后退 在常用浏览器中,都可以禁用了后退,包括手机端。
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
有时,需要禁止用户返回上一页面,这里总结了防止页面后退的好办法:
//防止页面后退 在常用浏览器中,都可以禁用了后退,包括手机端。
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});