Home  >  Article  >  Web Front-end  >  Detailed introduction to HTML forms

Detailed introduction to HTML forms

Y2J
Y2JOriginal
2017-05-20 10:20:322027browse

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

Edit

HTML5 has several new form input types. These new features provide better input control and validation.

1.Input type - email

email type is used for input fields that should contain e-mail addresses. When submitting the form, the value of the

email 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:

4.Input type - range

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, year

month - selects month, year

week - 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 used

Search 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 type

attribute (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).

First name:
Last name:

The browser displays as follows:

Detailed introduction to HTML forms

#Note that the form itself is not visible. Also, in most browsers, the default width of a text field is 20 characters.

Radio buttons are used when the user selects one of several given choices.

Male Female

The browser displays the following:

Male
Female

Note that you can only select one of them.

As shown:

Detailed introduction to HTML forms

Check box

When the user needs to select from a number of given choices When selecting one or several options, checkboxes are used.

I have a bike
I have a car

The browser displays as follows:

I have a bike
I have a car

Other components

Edit

Confirm

Button

When the user clicks the confirm button (submit), the content of the form will be transferred to another file. [1]

Action attribute

The action attribute (

action) of the form defines the file name of the destination file. The file defined by the action attribute usually performs related processing on the input data received.

Username:

The browser displays as follows:

Username:

As shown below:

Detailed introduction to HTML forms

If you are in the above text Type a few letters into the box and click the confirm button, then the input data will be sent to the page named "html_form_action.asp". That page will display the results entered.

Form Tag

Detailed introduction to HTML forms

【Related Recommendations】

1. HTML Free Video Tutorial

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!

Statement:
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