js禁止后退 Gary Wang 2023-05-22 前端 js 12345// 禁止后退history.pushState(null, null, document.URL);window.addEventListener('popstate', function () { history.pushState(null, null, document.URL);});