Disable Back Button in Browser using jquery?

后端 未结 8 675
慢半拍i
慢半拍i 2020-12-03 05:55

I would like to Disable Back button when user click on logoff for this i delete only cookies of that user not session in my application. And want to disable Back button

8条回答
  •  长情又很酷
    2020-12-03 06:24

    This will work, it worked for me as I am dealing with mobile browsers, android and ios.

    window.history.forward();
    window.onload = function()
    {
      window.history.forward();
    };
    
    window.onunload = function() {
      null;
    };
    

提交回复
热议问题