To implement the "Enter != Submit" problem, you can generally start from the "button type" and "number of input boxes". By default, for a single input box, regardless of whether the button is type="submit" or type="button", pressing Enter means submitting. 1. When type="submit", no matter how many type="text" input boxes there are, pressing Enter means submit. (submit) 2. When type="button" and there are multiple input boxes, pressing Enter does not submit. (button) 3. To solve the problem of submitting when pressing Enter in a single input box, refer to the second point: you can add an input="text" and hide it; then set the type to button. In actual applications, there is rarely only one input box, so you only need to remember the second rule to deal with it. Using JS events to prevent form submission is beyond the scope of this article, but it is certainly possible. |
<<: How to use docker compose to build fastDFS file server
>>: 9 super practical CSS tips to help designers and developers
Table of contents 1. Introduction 2. Preparation ...
Recently, an error occurred while starting MySQL....
I believe some people have seen this picture of c...
1. First go to the official website https://www.p...
Sometimes when requesting certain interfaces, you...
premise In complex scenarios, a lot of data needs...
JavaScript clicks to change the shape of the pict...
In this article, I will explain the relevant cont...
Table of contents 1. Sub-route syntax 2. Examples...
Recently, when using Apple.com/Ebay.com/Amazon.co...
Pre-installation work: Make sure vmware workstati...
The Golden Rule Always follow the same set of cod...
This article mainly introduces an example of Vue ...
1. Introduction to Docker 1.1 Virtualization 1.1....
Recently, I added a click-to-send email function t...