Prevent Use of the Back Button (in IE)

前端 未结 15 2017
囚心锁ツ
囚心锁ツ 2020-11-27 21:16

So the SMEs at my current place of employment want to try and disable the back button for certain pages. We have a page where the user makes some selections and submits the

15条回答
  •  被撕碎了的回忆
    2020-11-27 21:45

    I don't see this solution :

    function removeBack(){
    	window.location.hash="nbb";
    	window.location.hash="";
    	window.onhashchange=function(){window.location.hash="";}
    }

提交回复
热议问题