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

JavaScript method to prevent browser back button_javascript tips

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-16 16:08:49
Original
1148 people have browsed it

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="">
Copy after login

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

Related labels:
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template