Three radio buttons with labels:
<form action="/action_page.html">
<input type="radio" id="html" name="fav_language" value="HTML">
<label for="html">HTML</label><br>
<input type="radio" id="css" name="fav_language" value="CSS">
<label for="css">CSS</label><br>
<input type="radio" id="javascript" name="fav_language" value="JavaScript">
<label for="javascript">JavaScript</label><br><br>
<input type="submit" value="Submit">
</form>
Try it Yourself »
The <label>
tag defines a label for several elements:
Proper use of labels with the elements above will benefit:
<label>
element, it toggles the input (this increases the hit area). Tip: The for attribute of <label>
must be equal to the id attribute of the related element to bind them together. A label can also be bound to an element by placing the element inside the <label>
element.
Element | |||||
---|---|---|---|---|---|
<label> | Yes | Yes | Yes | Yes | Yes |
Attribute | Value | Description |
---|---|---|
for | element_id | Specifies the id of the form element the label should be bound to |
form | form_id | Specifies which form the label belongs to |
The <label>
tag also supports the Global Attributes in HTML.
The <label>
tag also supports the Event Attributes in HTML.
HTML DOM reference: Label Object
Most browsers will display the <label>
element with the following default values:
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!