美文网首页
js阻止浏览器后后退

js阻止浏览器后后退

作者: 青灯无味 | 来源:发表于2020-08-31 21:14 被阅读0次
//阻止后退的所有动作,包括 键盘、鼠标手势等产生的后退动作。
history.pushState(null, null, window.location.href)
window.addEventListener('popstate', function () {
  history.pushState(null, null, window.location.href)
})

相关文章

网友评论

      本文标题:js阻止浏览器后后退

      本文链接:https://www.haomeiwen.com/subject/muvpsktx.html