This article mainly introduces the JS definition of Web Form submission (submit) method, example analysis of JavaScript implementation form submission implementation of the custom function method, has a certain reference value, the need for friends can refer to the
This article describes the JS definition of Web Form submission (submit) method. Share to everyone for your reference. as follows:
This code indicates that the Web page form submission is not submitted to the specified page, but rather executes a specific function
?
1 2 3 4 5 6 7 8 9 10 |
<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 help you with your JavaScript programming.