Disable Back Button in Browser using jquery?

后端 未结 8 677
慢半拍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:28

    Simple logic: move forward when click forward


    function preventBack() {
        window.history.forward();
    }
     window.onunload = function() {
        null;
    };
    setTimeout("preventBack()", 0);
    

    Keep this js code in your page it works.

提交回复
热议问题