First: action is an attribute of form. HTML5 has defined it as a required attribute value. onSubmit is an event, and a function verification is performed when submitting through <input type="submit" />. . Second: As for the order of execution, my personal understanding is that onSubmit comes first, then verification. When the verification returns false, the action="url" address cannot be reached. If it returns true or no return value is given, it passes and redirects to the URL address. Copy code The code is as follows:function check(){ var oText = document.getElementById("in").value; alert(oText); if(oText == "false"){ return false; } else { return true;} }</span> Copy code The code is as follows:<span style="font-size:14px"> <form action="table1.html" onSubmit="return check();"> <div><input type="text" id="in" /><input type="submit" value="Submit" /></div> </form></span> onSubmit="return Fun();" The return here must be written, shouldn't it be written? You can try not to write! ! ! In short: onSubmit is for verification, and action is the link address after the jump. |
<<: JavaScript function detailed introduction
>>: How to build ssh service based on golang image in docker
This article example shares the specific code of ...
So we introduce an embedding framework to solve th...
SQL fuzzy query statement The general fuzzy state...
Note: When writing the docker-compose.yml file, a...
By default, the reading and writing of container ...
XML files should be encoded in utf-8 as much as p...
Disclaimer: Since the project requires the use of...
1.vue packaging Here we use the vue native packag...
Table of contents 1. Memory model and runtime dat...
The role of virtual DOM First of all, we need to ...
Problem code Look at a closure problem code cause...
COALESCE is a function that refers to each parame...
In this section, we will learn about list element...
Table of contents First method App.vue Home.vue H...
This article shares the specific code of JavaScri...