How to use HTML form with multiple examples

How to use HTML form with multiple examples

Nine simple examples analyze the use of HTML form for your reference. The specific contents are as follows

1 form tag

How does the website interact with users? The answer is to use an HTML form. The form can transmit the data entered by the browser to the server, so that the server-side program can process the data passed by the form.
grammar:

<form method="Transmission method" action="Server file">

•<form>: <form> tags appear in pairs, starting with <form> and ending with </form>.
•action: The place where the data entered by the browser is sent, such as a PHP page (save.php).
•method: The method of data transmission (get/post).

All form controls (text boxes, text fields, buttons, radio buttons, check boxes, etc.) must be placed between the <form></form> tags (otherwise the information entered by the user cannot be submitted to the server!).
Method: The difference between post/get is a question that backend programmers need to consider. Interested friends can check out the wiki of this section, which contains detailed introduction.

XML/HTML CodeCopy content to clipboard
  1. < form   method = "post"   action = "save.php" >   
  2.          < label   for = "username" > Username: </ label >   
  3.          < input   type = "text"   name = "username"   />   
  4.          < label   for = "pass" > Password: </ label >   
  5.          < input   type = "password"   name = "pass"   />   
  6. </ form >   

2 input/text/password text and password input box

A text input box is used when users want to type letters, numbers, etc. into a form. Text boxes can also be converted into password input boxes.
grammar:

XML/HTML CodeCopy content to clipboard
  1. < form >   
  2.     < input   type = "text/password"   name = "name"   value = "text"   />   
  3. </ form >   

When type="text", the input box is a text input box;
When type="password", the input box is a password input box.
name: Name the text box for use by background programs ASP and PHP.
value: Set a default value for the text input box. (Usually serves as a reminder)

Test code:

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE HTML >   
  2. < html >   
  3.      < head >   
  4.          < meta   http-equiv = "Content-Type"   content = "text/html; charset=utf-8" >   
  5.          < title > Text input box, password input box </ title >   
  6.      </ head >   
  7.      < body >   
  8.          < form    method = "post"   action = "save.php" >   
  9. Account: < input    type = "text"    name = "myName"   /> < br > < br >   
  10. Password: < input    type = "password"    name = "pass"   />   
  11.          </ form >     
  12.      </ body >   
  13. </ html >   

Browser effect:


3 textarea text field, supports multi-line text input

When users need to enter long text in a form, a text input field is required.
grammar:

<textarea rows="rows" cols="columns">Default value of text</textarea>

1. The <textarea> tag appears in pairs, starting with <textarea> and ending with </textarea>.
2. cols: The number of columns in a multi-line input field.
3. rows: The number of rows in a multi-line input field.
4. You can enter default values ​​between labels.

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE HTML >   
  2. < html >   
  3.      < head >   
  4.          < meta   http-equiv = "Content-Type"   content = "text/html; charset=utf-8" >   
  5.          < title > Text Field </ title >   
  6.      </ head >   
  7.      < body >   
  8.          < form   action = "save.php"   method = "post"   >   
  9.              < label > Personal Profile: </ label > < br >   
  10.              < textarea   cols = "40"   rows = "10" > Type your content here... </ textarea > < br >   
  11.              < input   type = "submit"   value = "OK"    name = "submit"   />   
  12.              < input   type = "reset"   value = "Reset"    name = "reset"   />   
  13.          </ form >     
  14.      </ body >   
  15. </ html >   

Browser effect:

4 radio/checkbox radio button and checkbox

When using forms to design surveys, it is a good idea to use selection boxes to reduce user operations. There are two types of selection boxes in HTML, radio buttons and check boxes. The difference between the two is that users can only select one option in a radio button, while users can select multiple options or even all of them in a check box.
grammar:

<input type="radio/checkbox" value="value" name="name" checked="checked"/>

1. When type="radio", the control is a radio button
2. When type="checkbox", the control is a checkbox
3.value: The value of the data submitted to the server (used by the background program PHP)
4.name: Name the control for use by background programs ASP and PHP
5. checked: When setting checked="checked", this option is selected by default
6. Note: For radio buttons in the same group, the name value must be consistent. For example, in the above example, the same name is "radioLove", so that the radio buttons in the same group can play the role of single selection.

XML/HTML CodeCopy content to clipboard
  1. < html >   
  2.      < head >   
  3.          < meta   http-equiv = "Content-Type"   content = "text/html; charset=utf-8" >   
  4.          < title > Radio Box, Check Box </ title >   
  5.      </ head >   
  6.      < body >   
  7.          < form   action = "save.php"   method = "post"   >   
  8. Do you like traveling? Please select: < br >   
  9.              < input   type = "radio"   name = "radiolove"   value = "like"   checked = "checked" > Like
  10.              < input   type = "radio"   name = "radiolove"   value = "dislike"   > Dislike
  11.              < input   type = "radio"   name = "radiolove"   value = "unknown"   > It doesn't matter
  12.              < br > < br >   
  13.   
  14. What sports do you like? < br >   
  15.              < input   type = "checkbox"   name = "checkbox"   value = "Run"   checked = "checked" > Run
  16.              < input   type = "checkbox"   name = "checkbox"   value = "Basketball" > Basketball
  17.              < input   type = "checkbox"   name = "checkbox"   value = "FootBall" > FootBall
  18.              < input   type = "checkbox"   name = "checkbox"   value = "Fat"   checked = "checked" > Fat
  19.          </ form >   
  20.      </ body >   
  21. </ html >   
  22.   


The browser effect is:


This demo code implements a radio button with 3 options and a check box with 4 options.

The name value of the same selection box must be consistent, otherwise the single selection and multiple selection functions cannot be implemented. The value in the same selection box must be different, otherwise the data passed to the background will be incorrect.

5 select/option using a drop-down list box

Drop-down lists are also often used on web pages, and they can effectively save web page space. You can select either single or multiple options.

grammar:

<option value=”name” selected=”selected”>Run</option>

Value is the value submitted to the server;

If you set the selected="selected" attribute, the option will be selected by default.

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE HTML >   
  2. < html >   
  3.      < head >   
  4.          < meta   http-equiv = "Content-Type"   content = "text/html; charset=utf-8" >   
  5.          < title > Drop-down list box </ title >   
  6.      </ head >   
  7.      < body >   
  8.          < form   action = "save.php"   method = "post"   >   
  9.              < label > Hobbies: </ label >   
  10.              < select >   
  11.                  < option   value = "reading" > reading </ option >   
  12.                  < option   value = "travel"   selected = "selected" > Travel </ option >   
  13.                  < option   value = "Sports" > Sports </ option >   
  14.                  < option   value = "Shopping" > Shopping </ option >   
  15.              </ select >   
  16.              < input   type = "submit"   name = "submit"   value = "submit" >   
  17.              < input   type = "reset"   name = "reset"   value = "reset" >   
  18.              < br > < br >   
  19.              < label > Leave us a message: </ label > < br >   
  20.              < textarea   cols = "40"   rows = "5" > Enter your message here... </ textarea >   
  21.              < br >   
  22.              < input   type = "submit"   value = "Click to confirm and submit your message"   name = "advise" >   
  23.          </ form >   
  24.      </ body >   
  25. </ html >   

Browser effect:

6 select/multiple/option using drop-down box to select multiple options

The drop-down list can also perform multiple selection operations. You can set the multiple="multiple" attribute in the tag to achieve the multiple selection function. Under the widows operating system, press the Ctrl key and click at the same time (use Command + click on Mac) to select multiple options.

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE HTML >   
  2. < html >   
  3.      < head >   
  4.          < meta   http-equiv = "Content-Type"   content = "text/html; charset=utf-8" >   
  5.          < title > Multiple selections using a drop-down list box </ title >   
  6.      </ head >   
  7.      < body >   
  8.          < form   action = "save.php"   method = "post"   >   
  9.              < label > Hobbies: </ label > < br >   
  10.              < select   multiple = "multipl" >   
  11.                  < option   value = "reading" > reading </ option >   
  12.                  < option   value = "Travel" > Travel </ option >   
  13.                  < option   value = "Sports" > Sports </ option >   
  14.                  < option   value = "Shopping" > Shopping </ option >   
  15.              </ select >   
  16.   
  17.              < br > < br >   
  18.              < label > Leave us a message: </ label > < br >   
  19.              < textarea   cols = "40"   rows = "5" > Enter your message here... </ textarea > < br >   
  20.              < input   type = "submit"   value = "Click to confirm and submit your message"   name = "advise" >   
  21.          </ form >   
  22.      </ body >   
  23. </ html >   

Browser effect:

7 input/submit uses the submit button to submit data

Syntax: <input type="submit" value="Submit">

type: The button will only have a submit function when the type value is set to submit
value: the text displayed on the button

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE HTML >   
  2. < html >   
  3.      < head >   
  4.          < meta   http-equiv = "Content-Type"   content = "text/html; charset=utf-8" >   
  5.          < title > Submit Button </ title >   
  6.      </ head >   
  7.      < body >   
  8.          < form    method = "post"   action = "save.php" >   
  9.              < label   for = "myName" > Name: </ label >   
  10.              < input   type = "text"   value = " "   name = "myName"   />   
  11.              < input   type = "submit"   value = "Submit"   name = "submitBtn"   />   
  12.          </ form >   
  13.      </ body >   
  14. </ html >   
  15.   


Browser effect:

8 input/reset Use the reset button to reset the form information

When the user needs to reset the form information to its initial state, for example, if the user enters the "user name" and finds that the writing is incorrect, the reset button can be used to restore the input box to its initial state. Just set type to "reset".
grammar:

<input type="reset" value="Reset">1

type: The button will reset only when the type value is set to reset
value: the text displayed on the button

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE HTML >   
  2. < html >   
  3.      < head >   
  4.          < meta   http-equiv = "Content-Type"   content = "text/html; charset=utf-8" >   
  5.          < title > Reset Button </ title >   
  6.      </ head >   
  7.      < body >   
  8.          < form   action = "save.php"   method = "post"   >   
  9.              < label > Hobbies: </ label >   
  10.              < select >   
  11.                  < option   value = "reading" > reading </ option >   
  12.                  < option   value = "travel"   selected = "selected" > Travel </ option >   
  13.                  < option   value = "Sports" > Sports </ option >   
  14.                  < option   value = "Shopping" > Shopping </ option >   
  15.              </ select >   
  16.              < input   type = "submit"   value = "OK"    />   
  17.              < input   type = "reset"   value = "Reset"    />   
  18.          </ form >   
  19.      </ body >   
  20. </ html >   
  21.   


Browser effect:

9 Label tag in the form

The label does not present any special effect to the user; its purpose is to improve usability for mouse users. If you click on the text inside the label tag, this control will be triggered. That is, when the user clicks to select the label tag, the browser will automatically shift the focus to the form control associated with the label (automatically select the form control associated with the label tag).
grammar:

<label for="Control id name">

Note: The value in the for attribute of the label must be the same as the id attribute value of the related control.

XML/HTML CodeCopy content to clipboard
  1. <!DOCTYPE HTML >   
  2. < html >   
  3.      < head >   
  4.          < meta   http-equiv = "Content-Type"   content = "text/html; charset=utf-8" >   
  5.          < title > label tag in form </ title >   
  6.      </ head >   
  7.   
  8.      < body >   
  9.          < form >   
  10.              < label   for = "male" > male </ label >     
  11.                  < input   type = "radio"   name = "gender"   id = "male"   /> < br   />   
  12.              < label   for = "female" > female </ label >     
  13.                  < input   type = "radio"   name = "gender"   id = "female"   />   < br   />   
  14.              < label   for = "email" > Enter your email address </ label >     
  15.                  < input   type = "email"   id = "email"   placeholder = "Enter email" > < br >   
  16.   
  17. What sports are you interested in: < br >   
  18.              < label   for = "run" > Jogging </ label >   
  19.                  < input   type = "checkbox"   name = "sports"   id = "run" > < br >   
  20.              < label   for = "climb" > Climbing </ label >   
  21.                  < input   type = "checkbox"   name = "sports"   id = "climb" > < br >   
  22.              < label   for = "basketball" > basketball </ label >   
  23.                  < input   type = "checkbox"   name = "sports"   id = "basketball" > < br >   
  24.          </ form >   
  25.      </ body >   
  26. </ html >   
  27.   

Browser effect:

The above is the full content of this article. I hope it will be helpful for everyone’s study.

<<:  Detailed explanation of CSS3 media query responsive layout bootstrap framework principle practice (recommended)

>>:  Explanation and example usage of 4 custom instructions in Vue

Recommend

Vue uses el-table to dynamically merge columns and rows

This article example shares the specific code of ...

An article to help you understand the basics of VUE

Table of contents What is VUE Core plugins in Vue...

HTML form component example code

HTML forms are used to collect different types of...

Basic ideas for finding errors in Web front-end development

WEB development mainly consists of two interactio...

Introduction to Semantic HTML Tags

In the past few years, DIV+CSS was very popular in...

Detailed explanation of Vue's hash jump principle

Table of contents The difference between hash and...

How to add website icon?

The first step is to prepare an icon making softwa...

Implementation of vue+drf+third-party sliding verification code access

Table of contents 1. Background 2. Verification p...

Vue realizes click flip effect

Use vue to simply implement a click flip effect f...

CSS 3.0 text hover jump special effects code

Here is a text hovering and jumping effect implem...

In-depth analysis of Flex layout in CSS3

The Flexbox layout module aims to provide a more ...

Nginx configuration file detailed explanation and optimization suggestions guide

Table of contents 1. Overview 2. nginx.conf 1) Co...

Summary of basic knowledge points of Linux group

1. Basic Introduction of Linux Group In Linux, ev...