js后退一直停留在当前页面或者禁止后退

//禁用后退按钮
function stopHistoryGo() {
	//禁用回退
	window.location.hash="no-back-button";
	window.location.hash="Again-No-back-button";//again because google chrome don't insert first hash into history
	window.location.hash="Again-No-back-button";
	window.onhashchange=function(){window.location.hash="no-back-button";}
	window.setTimeout(function(){window.location.hash="Again-No-back-button";},1000);
}

  

原文地址:https://www.cnblogs.com/xingmeng/p/5156682.html