禁用后退按钮

<script type="text/javascript">
	$(function(){
		//消除后退的所有动作。包括 键盘、鼠标手势等产生的后退动作。,用户登录到系统中后,浏览器回退按钮失效,只能点击退出按钮退出系统!
		history.pushState(null, null, document.URL);
		window.addEventListener('popstate', function () {
			history.pushState(null, null, document.URL);
		});
	});
</script>

  

posted @ 2022-04-28 17:06  变形金刚之猩猩将军  阅读(19)  评论(0)    收藏  举报