disable browser back button

前端 未结 4 826
灰色年华
灰色年华 2021-01-25 04:25

how to disable browser back button that works for all major browsers: IE/FF/ Chrome/Opera/Safari.

thanks!

相关标签:
4条回答
  • 2021-01-25 04:56

    Use history.forward(); in your source page from where you are going to the target page.now if u try to go back to the previous page u can't.

    <script type="text/javascript" language="javascript">
      history.forward();
    </script>
    

    disabling the browser button is not possible but try this solution if u want to implement in the same way.

    0 讨论(0)
  • 2021-01-25 05:02

    It's is technically impossible to disable the back button, but maybe this will help you out. It shows you some 'tricks' to achieve the same functionality.

    But you can also use AJAX and load everything asynchronous (so the user will always be on the same single page)

    0 讨论(0)
  • 2021-01-25 05:05

    You can try below script which is working code, put this code on your web page(.aspx).

    <script type="text/javascript">
    
        function noBack() { window.history.forward(); }
        noBack();
        window.onload = noBack;
        window.onpageshow = function(evt) { if (evt.persisted) noBack(); }
        window.onunload = function() { void (0); }
    
    </script>
    

    Happy coding !!

    0 讨论(0)
  • 2021-01-25 05:09

    It is not possible to disable the browser back button. There are couple of work arounds:

    1. Open your website in a window without the toolbar so back button is not visible. But this will not enable any shortcut key (like backspace) for the back button.
    2. Another work around is to use AJAX to update your DOM always so that back button is never enabled.
    0 讨论(0)
提交回复
热议问题