写了一个阻止浏览器跳转后执行后退操作的功能:
效果图:
跳转后:
主要js:
//防止页面后退
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
写了一个阻止浏览器跳转后执行后退操作的功能:
效果图:
跳转后:
主要js:
//防止页面后退
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});