这种方式,可以消除 后退的所有动作。包括 键盘、鼠标手势等产生的后退动作
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () { history.pushState(null, null, document.URL); });本文共 233 字,大约阅读时间需要 1 分钟。
这种方式,可以消除 后退的所有动作。包括 键盘、鼠标手势等产生的后退动作
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () { history.pushState(null, null, document.URL); });转载于:https://www.cnblogs.com/liuhaixia/p/9543856.html