This article describes the method of JS defining web form submission (submit). Share it for your reference. The details are as follows:
This code means that when submitting the web form, it is not submitted to the specified page, but executes a specific function.
<script>function saveInfo() { localStorage.setItem("name",$("#name").val());}</script><form id=register onSubmit="return saveInfo()"> <label for="name">Name:</label> <input type=text name=name id=name> <input type=submit value=save></form>I hope this article will be helpful to everyone's JavaScript programming.