Does
Solution 1:
The for
attribute links a control to an input
, there is, so far as I know, no limit to the number of elements that can link to one input
, so long as the id
of that input
(or textarea
, select
, etc) is unique.
For example, in the following demo bothlabel
elements will trigger the change (check/uncheck) of the checkbox input
element:
<labelfor="foo">Outer label</label><divclass="foo-bar"><inputtype="checkbox"type="checkbox"name="test"id="foo" /><labelfor="foo">Inner label</label></div>
This can be useful for adding error messages (post-validation, for example) that explicitly link to, or otherwise identify, the element in which there's an error, without overriding/replacing the pre-existing label
for that element.
Unfortunately there is, so far as I've yet found, no reference or documentation that explicitly allows an input
(or similar element) to linked to only one control; however MDN's entry for <label>
does state that:
The ID of a labelable form-related element in the same document as the label element. The first such element in the document with an ID matching the value of the for attribute is the labeled control for this label element.
Post a Comment for "Does