Disable the browser forward and back functions

Disable the browser forward and back function
using here is the Vue

// 在 main.js 中添加以下代码
// 禁用浏览器前进后退
window.history.pushState(null, null, window.location.href);
window.addEventListener('popstate', function () {
  window.history.forward(-1);
  window.history.pushState(null, null, window.location.href);
});

// 在每个页面加载完成时执行以下代码
window.history.pushState(null, null, window.location.href);
Released five original articles · won praise 0 · Views 1501

Guess you like

Origin blog.csdn.net/MingFeng197/article/details/104683765