禁用浏览器的返回功能

//        禁用浏览器的返回
        window.history.pushState(null, null, document.URL);
        window.addEventListener('popstate', function () {
            window.history.pushState(null, null, document.URL);
        });

你可能感兴趣的:(禁用浏览器的返回功能)