vue阻止页面回退方法 小小闹钟 2022-09-01 242 阅读1分钟 ` window.history.pushState(null, null, window.location.href); window.addEventListener('popstate', function () { window.history.forward(-1); window.history.pushState(null, null, window.location.href); }); `