jquery中禁止浏览器使用前进后退按钮

在某些业务场景下需要对浏览器的前进后退按钮进行禁用,如锁屏等等。可加入如下jquery代码。

jQuery(document).ready(function() {
				var counter = 0;
				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);
			});

 

你可能感兴趣的:(jquery,浏览器,后退,前进)