Disable browser's back button

后端 未结 20 1662
猫巷女王i
猫巷女王i 2020-11-22 04:27

How to disable browser\'s BACK Button (across browsers)?

20条回答
  •  甜味超标
    2020-11-22 05:21

    I was searching for the same question and I found following code on a site. Thought to share it here:

    function noBack()
    {
       window.history.forward()
    }
    noBack();
    window.onload = noBack;
    window.onpageshow = function(evt){ if(evt.persisted) noBack(); }
    window.onunload = function(){ void(0); }
    

    However as noted by above users, this is never a good practice and should be avoided for all reasons.

提交回复
热议问题