禁用浏览器后退键的神代码:

history.pushState(null, null, document.URL)

window.addEventListener('popstate', function () {

    history.pushState(null, null, document.URL)

})