window.history.pushState(null, null, document.URL) // 阻止回退 window.addEventListener("popstate", function(e) { // 自定义回退 window.location.href = '自定页面地址' }, false);