开发者

disable browser back button

how to disable browser back button th开发者_StackOverflow中文版at works for all major browsers: IE/FF/ Chrome/Opera/Safari.

thanks!


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.


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)


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.


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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜