首页 > 技术文章 > js防止浏览器后退(键盘、鼠标手势)

liuhaixia 2018-08-27 18:06 原文

 

这种方式,可以消除 后退的所有动作。包括 键盘、鼠标手势等产生的后退动作

history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});

推荐阅读