Can an input field have two labels?

后端 未结 3 1320
一整个雨季
一整个雨季 2020-12-08 08:56

Mary had a little form, and its fields where labeled just so.
Whenever an error crept in, confusion it would sow.

I\'ve got a label for each input field

相关标签:
3条回答
  • 2020-12-08 09:29

    The HTML is legal, and it works (clicking on any of the labels will transfer focus to the field in question).

    It's a little trickier to do right for accessibility reasons.

    It's not a "common" approach, and because of that at least one common screen reader (I tested with NVDA) only reads the first label when you shift focus into the field -- it ignores any additional labels for the same field.

    So if your error message is at the top of the page, a blind or low-vision user tabbing through the fields will hear just the error message when landing on the field in question, not the "real" label next to it.

    Hence -- if you phrase the error message properly, that might be a good thing (certainly better than just highlight the non-validating field in red!).

    0 讨论(0)
  • 2020-12-08 09:29

    Yes, you can have multiple labels point at the same form control. This is perfectly legal:

    <label for="fname">First name</label>
    <label for="fname">Enter your info</label>
    <label for="fname">Why not a third label</label>
    <input type="text" id="fname" name="fname">
    

    This is just an example... normally you would wrap these lines with one label since they're close.

    0 讨论(0)
  • 2020-12-08 09:43

    I assume this question is about HTML forms. From the specification:

    The LABEL element may be used to attach information to controls. Each LABEL element is associated with exactly one form control.

    Thus, each form control can be referenced by multiple labels, but each label can only reference one control. So if it makes sense to have a second label for a control (and in the situation you describe, it does) feel free to add a second label.

    0 讨论(0)
提交回复
热议问题