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);
}

  

posted @ 2016-01-25 10:09  幻星宇  阅读(1564)  评论(0编辑  收藏  举报