<label> 標簽為 input 元素定義標注(標記)。label 元素不會向用戶呈現任何特殊效果。不過,它為鼠標用戶改進了可用性。如果您在 label 元素內點擊文本,就會觸發此控件。就是說,當用戶選擇該標簽時,浏覽器就會自動將焦點轉到和標簽相關的表單控件上。<label> 標簽的 for 屬性應當與相關元素的 id 屬性相同
實例1:
復制代碼代碼如下:
<label for="man">
<input type="radio" value="男" name="man" id="man"/>
男
</label>
<label for="man2">
<input type="radio" value="女" name="man" id="man2"/>
女
</label>
實例2:
復制代碼代碼如下:
<input type="checkbox" name="Pages" value="Job" id="Job" ><label for="Job">添加、編輯招聘信息</label>
<input type="checkbox" name="Pages" value="JobQuery" id="JobQuery" ><label for="JobQuery">查詢、刪除招聘信息</label>
<input type="checkbox" name="Pages" value="Technology" id="Technology" checked><label for="Technology">添加、修改科技項目</label>