How to specify in HTML that an element must be filled in before submitting the form?

王林
Release: 2023-08-25 20:01:02
forward
908 people have browsed it

How to specify in HTML that an element must be filled in before submitting the form?

#The required attribute in HTML is used to specify that the element should be populated before the form is submitted. If the field is not filled in and the submit button is clicked, an error will be generated causing the form submission to fail. The error will be "Please fill in this field".

The required attribute can be used on input, select and textarea elements.

Example

You can try running the following code to achieve Read-only Properties -

<!DOCTYPE html>
<html>
   <head>
      <title>HTML placeholder attribute</title>
   </head>
   <body>
      <h2>Register</h2>
      <form action = "/new.php">
         <input type = "text" placeholder = "Student UserName" name = "name" required/><br>
         <input type = "submit" value = "Submit">
      </form>
   </body>
</html>
Copy after login

The above is the detailed content of How to specify in HTML that an element must be filled in before submitting the form?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
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