JS禁用浏览器前进后退

<script language="javascript">
//防止页面后退
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
</script>

可以屏蔽鼠标和键盘的回退

上一篇:kindle paperwhite2 root 密码修改方法


下一篇:vue项目搭建步骤