Home > Web Front-end > JS Tutorial > body text

How to define web form submission (submit) in JS_javascript skills

WBOY
Release: 2016-05-16 16:08:14
Original
1444 people have browsed it

The example in this article describes the method of defining web form submission (submit) in JS. Share it with everyone for your reference. The details are as follows:

This code means that when the web form is submitted, 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>
Copy after login

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

Related labels:
source:php.cn
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