提到禁止浏览器的后退行为,就不得不提到history这个api.而HTML5中中新引入的pushState()和 replaceState()方法。
现在你打开百度,搜索“js实现禁止浏览器后退功能”,你会看到一大片解决方案,当然也有所谓的“终极方案”,类似下面这种:
//防止页面后退
history.pushState(null, null, document.URL);
window.addEventListener('popstate', <
提到禁止浏览器的后退行为,就不得不提到history这个api.而HTML5中中新引入的pushState()和 replaceState()方法。
现在你打开百度,搜索“js实现禁止浏览器后退功能”,你会看到一大片解决方案,当然也有所谓的“终极方案”,类似下面这种:
//防止页面后退
history.pushState(null, null, document.URL);
window.addEventListener('popstate', <