HTML <label> 标签

在html中,<label>标签通常和<input>标签一起使用,<label>标签为input元素定义标注(标记)。<label>标签的作用是为鼠标用户改进了可用性,当用户点击<label>标签中的文本时,浏览器就会自动将焦点转到和该标签相关联的控件上;


实例

带有两个输入字段和相关标记的简单 HTML 表单:

  1. <html>
  2. <body>
  3. <h1>label 元素</h1>
  4. <p>请点击文本标记之一,就可以触发相关控件:</p>
  5. <form action="/example/html/html_page.aspx">
  6. <label for="male">男士</label>
  7. <input type="radio" name="gender" id="male" value="male"><br>
  8. <label for="female">女士</label>
  9. <input type="radio" name="gender" id="female" value="female"><br>
  10. <label for="other">其他</label>
  11. <input type="radio" name="gender" id="other" value="other"><br><br>
  12. <input type="submit" value="提交">
  13. </form>
  14. </body>
  15. </html>

浏览器支持

元素
<label>YesYesYesYesYes

所有主流浏览器都支持 <label> 标签。Safari 2 或更早的版本不支持


定义和用法

<label> 标签为 input 元素定义标注(标记)。使得用户更理解input元素的含义,包括:

  • <input type="checkbox">
  • <input type="color">
  • <input type="date">
  • <input type="datetime-local">
  • <input type="email">
  • <input type="file">
  • <input type="month">
  • <input type="number">
  • <input type="password">
  • <input type="radio">
  • <input type="range">
  • <input type="search">
  • <input type="tel">
  • <input type="text">
  • <input type="time">
  • <input type="url">
  • <input type="week">
  • <meter>
  • <progress>
  • <select>
  • <textarea>

label 元素不会向用户呈现任何特殊效果。不过,它为鼠标用户改进了可用性。如果您在 label 元素内点击文本,就会触发此控件。就是说,当用户选择该标签时,浏览器就会自动将焦点转到和标签相关的表单控件上。

<label> 标签的 for 属性应当与相关元素的 id 属性相同。


HTML 与 XHTML 之间的差异


提示和注释:

注释:"for" 属性可把 label 绑定到另外一个元素。请把 "for" 属性的值设置为相关元素的 id 属性的值。


属性

HTML5 中的新属性。

属性描述
forid规定 label 绑定到哪个表单元素。
formformid规定 label 字段所属的一个或多个表单。

全局属性

<label> 标签支持 HTML 中的 全局属性


事件属性

<label> 标签支持 HTML 中的 事件属性


相关页面

HTML DOM 参考手册:Column 对象