HTML <label> 标签
在html中,<label>标签通常和<input>标签一起使用,<label>标签为input元素定义标注(标记)。<label>标签的作用是为鼠标用户改进了可用性,当用户点击<label>标签中的文本时,浏览器就会自动将焦点转到和该标签相关联的控件上;
实例
带有两个输入字段和相关标记的简单 HTML 表单:
<html>
<body>
<h1>label 元素</h1>
<p>请点击文本标记之一,就可以触发相关控件:</p>
<form action="/example/html/html_page.aspx">
<label for="male">男士</label>
<input type="radio" name="gender" id="male" value="male"><br>
<label for="female">女士</label>
<input type="radio" name="gender" id="female" value="female"><br>
<label for="other">其他</label>
<input type="radio" name="gender" id="other" value="other"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
浏览器支持
元素 | |||||
---|---|---|---|---|---|
<label> | Yes | Yes | Yes | Yes | Yes |
所有主流浏览器都支持 <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 中的新属性。
属性 | 值 | 描述 |
---|---|---|
for | id | 规定 label 绑定到哪个表单元素。 |
form | formid | 规定 label 字段所属的一个或多个表单。 |
全局属性
<label> 标签支持 HTML 中的 全局属性。
事件属性
<label> 标签支持 HTML 中的 事件属性。
相关页面
HTML DOM 参考手册:Column 对象