ChatGPT解决这个技术问题 Extra ChatGPT

What does "for" attribute do in HTML <label> tag?

I wonder what is the difference between the following two code snippets:

<label>Input here : </label>
<input type='text' name='theinput' id='theinput'/>

and

<label for='theinput'>Input here : </label>
<input type='text' name='theinput' id='theinput'/>

I'm sure it does something when you use a special JavaScript library, but apart from that, does it validate the HTML or required for some other reason?


A
Andy

The <label> tag allows you to click on the label, and it will be treated like clicking on the associated input element. There are two ways to create this association:

One way is to wrap the label element around the input element:

<label>Input here:
    <input type='text' name='theinput' id='theinput'>
</label>

The other way is to use the for attribute, giving it the ID of the associated input:

<label for="theinput">Input here:</label>
<input type='text' name='whatever' id='theinput'>

This is especially useful for use with checkboxes and buttons, since it means you can check the box by clicking on the associated text instead of having to hit the box itself.

Read more about the <label> element on MDN.

Associating text with an input is very important for accessibility, as it provides an accessible name for the input, so that assistive technology can provide it to users with disabilities. A screen reader would read the label text when the user focusses the input. You could also tell your voice command software to focus that input, but it needs a (visible) name for that.

Read more on Accessibility


Note that the for attribute is bound to the input by the id attribute, and the name attribute does not have to match. Will still work
A click on the label is not always treated exactly like clicking on the associated element. In Chrome and Safari, for example, clicking a label that is associated with a select only puts focus on the select rather than expanding the options.
@EmilePels As far as the browser's event model is concerned, they're equivalent. What you're describing is more about the UI provided by the OS's handling of drop-down menus, which is tied to the mouse itself.
It seems important to mention that it's very relevant for accessibility and screen readers, why actively use it.
I was struggling the last two hours with the click of the body raised twice each time I click on a label in a form with the "for" attribute to an input field. I finally understand why even if I use stopPropagation on the click of the label why the click of the body was still raised... because of the click raised by the input field following the behavior that you described.
J
Joseph Quinsey

The for attribute associates the label with a control element, as defined in the description of label in the HTML 4.01 spec. This implies, among other things, that when the label element receives focus (e.g. by being clicked on), it passes the focus on to its associated control. The association between a label and a control may also be used by speech-based user agents, which may give the user a way to ask what the associated label is, when dealing with a control. (The association may not be as obvious as in visual rendering.)

In the first example in the question (without the for), the use of label markup has no logical or functional implication – it’s useless, unless you do something with it in CSS or JavaScript.

HTML specifications do not make it mandatory to associate labels with controls, but Web Content Accessibility Guidelines (WCAG) 2.0 do. This is described in the technical document H44: Using label elements to associate text labels with form controls, which also explains that the implicit association (by nesting e.g. input inside label) is not as widely supported as the explicit association via for and id attributes,


+1 for talking about the semantic relationship and what it means beyond the functional clicking relationship.
Hi, I have two elements with the same id but in different div, I added focus event using label for but in second element it is focusing on first element.
The HTML specification dictates that ids need to be unique. Having duplicate ids is not supported and will have unintended consequences like what you're experiencing.
U
Uwe Keim

In a nutshell what it does is refer to the id of the input, that's all:

<label for="the-id-of-the-input">Input here:</label>
<input type="text" name="the-name-of-input" id="the-id-of-the-input">

Adding a for is important, even if they are adjacent. I seem to recall hearing that some screen readers for the visually impaired have problems otherwise. So if you want to be friendly to those who are perhaps using alternate browsers/screen readers, use this method.
F
F. Hauri - Give Up GitHub

Using label for= in html form

This could permit to visualy dissociate label(s) and object while keeping them linked.

Sample: there is a checkbox and two labels.

You could check/uncheck the box by clicking indifferently on any label or on checkboxes, but not on text nor on input content...

any label or

on checkboxes,


Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Duis sem velit, ultrices et, fermentum auctor, rhoncus ut, ligula. Phasellus at purus sed purus cursus iaculis. Suspendisse fermentum. Pellentesque et arcu. Maecenas viverra. In consectetuer, lorem eu lobortis egestas, velit odio imperdiet eros, sit amet sagittis nunc mi ac neque. Sed non ipsum. Nullam venenatis gravida orci.
Demo 1

Some useful tricks

Same sample, but with two checkboxes and some different CSS effects (like writting in text: Select this or Deselect this reflecting checkbox state.).

By using stylesheet CSS power you can do a lot of interesting things...

body { background: #DDD; } .button:before { content: 'S'; } .box:before { content: '☐'; } label.button { background: #BBB; border-top: solid 2px white;border-left: solid 2px white; border-right: solid 2px black;border-bottom: solid black 2px; } #demo2:checked ~ .but2:before { content: 'Des'; } #demo2:checked ~ .but2 { background: #CCC; border-top: solid 2px black;border-left: solid 2px black; border-right: solid 2px white;border-bottom: solid white 2px; } #demo2:checked ~ .box2:before { content: '☒'; } #demo1:checked ~ .but1 { background: #CCC; border-top: solid 2px black;border-left: solid 2px black; border-right: solid 2px white;border-bottom: solid white 2px; } #demo1:checked ~ .but1:before { content: 'Des'; } #demo1:checked ~ .box1:before { content: '☒'; } Demo 1 Demo 2
-
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Duis sem velit, ultrices et, fermentum auctor, rhoncus ut, ligula. Phasellus at purus sed purus cursus iaculis. Suspendisse fermentum. Pellentesque et arcu. Maecenas viverra. In consectetuer, lorem eu lobortis ...
-

Usage sample: Toggle sidebar using CSS only (2nd snippet).


This answer was posted 7 years, 4 months, 4 weeks, 2 days, 11 am, 26 minutes and 29 seconds after the question. His first upvote has been granted 1 year, 3 weeks, 4 days, 13 hours, 35 minutes and 42 seconds later ...
I never thought of it as providing multiple things you can click on to set the one and only checkbox. I like it
@J_McCaffrey If you liked this, maybe would you like the usage sample: Toggle sidebar using CSS only look at 2nd snippet: toggle:checked.
A
Andrew Truckle

The for attribute of the <label> tag should be equal to the id attribute of the related element to bind them together.


Yes, but what do you mean by "bind them together" ? They are already neighbors in HTML structure. This is what I don't understand.
FOR Specifies which form element a label is bound to
@CengizFrostclaw jsfiddle.net/DmSGh --- try clicking on both of the "Input here" texts and see what happens.
@CengizFrostclaw:- A label can be bound to an element either by using the "for" attribute
There are some nice features for example when you are using radio buttons. Clicking on the label will actually toggle the radio button. This is a nice feature when you try to use radio buttons with a custom ui.
A
Andrew Truckle

The for attribute shows that this label stands for related input field, or check box or radio button or any other data entering field associated with it. for example

<li>
    <label>{translate:blindcopy}</label>
    <a class="" href="#" title="{translate:savetemplate}" onclick="" ><i class="fa fa-list" class="button" ></i></a> &nbsp 
            <input type="text" id="BlindCopy" name="BlindCopy" class="splitblindcopy" />

</li>

p
pythag0ras_

It labels whatever input is the parameter for the for attribute.