网站账号注销点击浏览器后退无法查看原用户信息

<script type="text/javascript" src="jquery/jquery-3.3.1.js"></script>
<script type="text/javascript" >
$(function() {
	if (window.history && window.history.pushState) {
		$(window).on('popstate', function() {
			window.history.pushState('forward', null, '#');
			window.history.forward(1);
		});
	}
	window.history.pushState('forward', null, '#'); //在IE中必须得有这两行
	window.history.forward(1);
});
</script>

猜你喜欢

转载自blog.csdn.net/liujucai/article/details/83420802
今日推荐