Home Web Front-end HTML Tutorial What is the function of html label tag? Detailed explanation of how to use the html label tag

What is the function of html label tag? Detailed explanation of how to use the html label tag

Sep 04, 2018 pm 03:51 PM
html

This article mainly introduces the introduction of the dare html label tag, as well as the main usage scenarios of the html label tag, and finally there are comments about the html label tag. Now let's take a look at this article

First let's take a look at the introduction of the html label tag:

The label tag defines the label (mark) for the input element, which No special effects will be presented to the user, similar to the span tag. But the biggest difference between the label label and the span label is that it improves usability for mouse users and can be associated with specific form controls.

After the label label is associated with a specific form control, if the user clicks the text within the label element, the associated form control will be triggered. That is to say, when the user selects the label label, the browser will automatically turn the focus to the form control related to the label label.

html The main usage scenarios of the label label:

The label label is often used to associate with a checkbox or radio, so that the checkbox or radio can be selected/cancelled by clicking on the text. As shown in the figure below, clicking on text has the same effect as clicking on the previous radio button, that is, the clickable area of ​​the control is enlarged, because clicking on the label or control will activate the control, which is especially useful for check boxes and radio buttons.

Now let’s talk about the use of the html label tag:

<form> 
<label for="male">两个人</label> 
<input type="radio" name="sex" id="male" />
<label for="female">一个人</label> 
<input type="radio" name="sex" id="female" />
</form>
Copy after login

This is a radio button, so there is no need to display the effect.

Finally, let’s take a look at the comments about the html label tag:

To bind LABEL to other controls, set the FOR attribute of the LABEL element to The same ID as the control. Binding LABEL to the control's NAME property is useless. However, to submit the form, you must specify a name for the control to which the LABEL element is bound.

There are two ways to add an underline to the specified shortcut key. Rich text support for the LABEL element allows the addition of U elements on either side of the accelerator character specified by the ACCESSKEY attribute. If you prefer to use a style sheet (CSS) to apply the style, you can include the character in a SPAN and set the style to "text-decoration: underline".

If the user clicks LABEL, the onclick event on LABEL will be triggered first, and then the onclick event on the control specified by the htmlFor attribute will be triggered. Pressing the shortcut key set by LABEL will set the focus but not trigger the onclick event.

【Editor's Recommendation】

How to wrap the html code tag? This article will give you a thorough understanding of the use of code phrases

htmlHow to write space code? Summary of the expression of html space code

The above is the detailed content of What is the function of html label tag? Detailed explanation of how to use the html label tag. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

See all articles