js禁用网页的后退功能
https://www.jianshu.com/p/c617c3f00be1
window.history.pushState(null, null, document.URL); window.addEventListener('popstate', function(e) { window.history.pushState(null, null, document.URL); });
https://www.jianshu.com/p/c617c3f00be1
window.history.pushState(null, null, document.URL); window.addEventListener('popstate', function(e) { window.history.pushState(null, null, document.URL); });