HTML forms are used to collect different types of user input. HTML5 Input, with multiple new form input types, provides better input control and validation.
Form
Edit
A form is an area that contains form elements.
Form elements are elements that allow users to enter information in a form (such as text fields, drop-down lists, radio buttons, check boxes, etc.).
Forms are defined using the form tag (
##Input type
EditHTML5 has several new form input types. These new features provide better input control and validation. email type is used for input fields that should contain e-mail addresses. When submitting the form, the value of theemail field will automatically be verified.
2.Input type - url
The url type is used for input fields that should contain URL addresses. When submitting the form, the value of the url field is automatically verified.3.Input type - number
number type is used for input fields that should contain numerical values. You can also set limits on the numbers that are accepted: range type is used when a certain Input field for numeric values within the range. Range types are displayed as sliders. You can also set limits on the numbers accepted:5.Input Type - Date Pickers (Data Checker)
HTML5 has several new input types for selecting dates and times: date - selects day, month, yearmonth - selects month, yearweek - Select week and year
time - Select time (hours and minutes)
datetime - Select time, day, month, year (UTC time) datetime-local - Select time, day, month, year (local time)6.Input type - search
search type is usedSearch domains, such as site search or Google search.
The search field appears as a regular text field.Input
Edit
The form tag used in most cases is the input tag (). The input type is defined by the typeattribute (type). Most commonly used input types are as follows:
Text field
Text is used when users type letters, numbers, etc. in a form fields (text fields).<form> First name: <input type="text" name="firstname" /><br /> Last name: <input type="text" name="lastname" /> </form>
<form> <input type="radio" name="sex" value="male"> Male <input type="radio" name="sex" value="female"> Female </form>
Male Female
Check box
When the user needs to select from a number of given choices When selecting one or several options, checkboxes are used.<form> <input type="checkbox" name="bike" />I have a bike <br /> <input type="checkbox" name="car" />I have a car </form>
I have a bike I have a car
Other components
Edit
ConfirmWhen the user clicks the confirm button (submit), the content of the form will be transferred to another file. [1] Action attributeThe action attribute (<form name="input" action="html_form_action.asp" method="get"> Username: <input type="text" name="user"> <input type="submit" value="Submit"> </form>
Form Tag
【Related Recommendations】
2. Detailed explanation of the working process of the form form
3. Detailed explanation of the method attribute in the form tag
4. Take you to master the table and form forms in HTML
5. Detailed explanation of the parameters and attributes of the form form in HTML
The above is the detailed content of Detailed introduction to HTML forms. For more information, please follow other related articles on the PHP Chinese website!