开发者

Regarding the HTML Label's "For" Property [duplicate]

This question already has answers here: What does "for" attribute do in an HTML <label> tag? 开发者_开发问答 (7 answers) Closed 7 years ago.

Considering the following 2 lines of code (copied from w3schools.com > "HTML < label > for Attribute"):

  <label for="male">Male </label>
  <input type="radio" name="sex" id="male" />

I am having trouble discovering the exact purpose of the above label's "for" property. As you can see it is currently set to "male" (to match the id of the input control).

All I have read so far is that the above code will 'associate' and 'bound' the label with the input control. So my question is, what exactly does this mean?

What exactly are the results of associating the label to the input control?

Does the label and/or input have new behaviours as a result of this 'association'?


A label that is associated with a control via for will be clickable. Clicking it selects the control. Highly useful with radio/checkboxes in particular. It also has accessibility implications for screen readers for the visually impaired.


When you click on the label (Male), the radio will be checked something not possible if you are not using a label. A label is also useful when developing for small devices such as mobiles.

So, it is useful for:

  • accessibility reasons
  • smaller devices such as mobiles, etc
  • useful in radio buttons and check boxes especially


I believe that linking a label to a form element allows you to assign the label an access key, which will bring the focus to the form element associated with it.

As others have mentioned it also allows you to click on the label and bring focus to the form element.

The for attribute alllows you to place the label and the element in semantically different areas of the html, and maintain association. (Like two tables, or two different divs). If you're putting both of them together like in your example, it is also correct to enclose the form element in the label and forgo the for attribute


Yes, I believe it acts as a form control or a check mechanism when filling a form on webpage, especially ones with radio buttons or check boxes. By clicking on the label, it points the user directly to an area on the form where the right information should be typed. For example, a "text." Or, in a case where the user must choose from some options, such as true or false, or male or female.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜