应用系统退出后按后退按钮可访问先前的页面

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_17079071/article/details/82883437
$(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);
});

猜你喜欢

转载自blog.csdn.net/qq_17079071/article/details/82883437