Introduction to the use of form OnSubmit and input type=image

Introduction to the use of form OnSubmit and input type=image
If there is an <input type="image"> here, then pressing this image directly will submit the form.

If there is OnSubmit, this function will be executed first. If it returns false, the form will not be submitted!

Copy code
The code is as follows:

<span style="font-size:14px;"><script language=javascript>
function test()
{
alert("Test!")
}
</script>
<form name="F1" onSubmit="fuck();">
<input type="image" src="" width="51" height="20">
</form></span>

Another example:

Copy code
The code is as follows:

<html>
</head>
<script language="javascript">
function checkEmpty(form){
for(i=0;i<form.length;i++){
alert(form.elements[i].value);
if( form.elements[i].value=="" ){
alert("Form information cannot be empty");
return false;
}
}
}
</script>
<body>
<form name="form" method="post" onSubmit="return checkEmpty(form)">
<input name="name" type="text" size="17">
<input name="password" type="password" size="17">
<input type="image" src="" width="51" height="20">
<input type="button" value="AAA" />
</form>
</body>
<html>

<<:  Summary of pitfalls of using nginx as a reverse proxy for grpc

>>:  Several methods of implementing two fixed columns and one adaptive column in CSS

Recommend

Graphic tutorial for installing MySQL 5.6.35 on Windows 10 64-bit

1. Download MySQL Community Server 5.6.35 Downloa...

Mini Programs use Mini Program Cloud to implement WeChat payment functions

Table of contents 1. Open WeChat Pay 1.1 Affiliat...

Detailed steps to store emoji expressions in MySQL

Caused by: java.sql.SQLException: Incorrect strin...

Detailed explanation of JavaScript closure issues

Closures are one of the traditional features of p...

Detailed explanation of the basic use of centos7 firewall in linux

1. Basic use of firewalld start up: systemctl sta...

Detailed explanation of the basic usage of the img image tag in HTML/XHTML

The image tag is used to display an image in a we...

MYSQL slow query and log settings and testing

1. Introduction By enabling the slow query log, M...

Sample code for implementing PC resolution adaptation in Vue

Table of contents plan Install Dependencies Intro...

Disadvantages and reasonable use of MySQL database index

Table of contents Proper use of indexes 1. Disadv...

Nginx access log and error log parameter description

illustrate: There are two main types of nginx log...

js canvas realizes rounded corners picture

This article shares the specific code of js canva...

Detailed deployment of Alibaba Cloud Server (graphic tutorial)

I have recently learned web development front-end...

A brief discussion on HTML ordered lists, unordered lists and definition lists

Ordered List XML/HTML CodeCopy content to clipboa...