Home >Web Front-end >JS Tutorial >JavaScript method to prevent browser back button_javascript tips

JavaScript method to prevent browser back button_javascript tips

WBOY
WBOYOriginal
2016-05-16 16:08:491082browse

The example in this article describes how to prevent the browser’s back button using JavaScript. Share it with everyone for your reference. The specific analysis is as follows:

The following JS code can prevent users from clicking the return button. It is very practical and can be saved by friends who need it.

<SCRIPT type="text/javascript">
  window.history.forward();
  function StopBack() { window.history.forward(); }
</SCRIPT>
</HEAD>
<BODY onload="StopBack();"
  onpageshow="if (event.persisted) StopBack();" onunload="">

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn