Which attribute in html5 is used to specify that an input field is required?

WBOY
Release: 2021-12-17 14:49:21
Original
8240 people have browsed it

The attribute that stipulates that the input field is required in html5 is "required", and the syntax is "" or ""; this attribute stipulates that it must be in Fill in the input fields before submitting the form. When using this attribute on an element, the fields are required.

Which attribute in html5 is used to specify that an input field is required?

The operating environment of this tutorial: Windows 10 system, HTML5 version, Dell G3 computer.

Which attribute in html5 is used to specify that the input field is required

In html, the required attribute can specify that the input field is required.

The required property is a Boolean property. The required attribute specifies that the input fields must be filled in before the form can be submitted. If this attribute is used, the field is required (or required).

The syntax is as follows:

<input required>
Copy after login

or

<input required="required">
Copy after login

The example is as follows:

<html>
<head> 
<meta charset="utf-8"> 
<title>123</title> 
</head>
<body>
<form action="demo-form.php">
  Username: <input type="text" name="usrname" required>
  <input type="submit">
</form>
<p><strong>注意:</strong> Internet Explorer 9及更早 IE 版本,或 Safari 不支持 input 标签的 required 属性。</p>
</body>
</html>
Copy after login

Output result:

Which attribute in html5 is used to specify that an input field is required?

Recommended tutorial: "html video tutorial"

The above is the detailed content of Which attribute in html5 is used to specify that an input field is required?. For more information, please follow other related articles on the PHP Chinese website!

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