Home >Web Front-end >JS Tutorial >JavaScript method to prevent browser back button_javascript tips
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.