Thuộc tính biểu mẫu HTML <label>

❮ Thẻ HTML <label>

Thí dụ

Phần tử <label> nằm bên ngoài biểu mẫu (nhưng vẫn là một phần của biểu mẫu):

<form action="/action_page.php" id="form1">
  <input type="radio" id="html" name="fav_language" value="HTML"><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>

<label form="form1" for="html">HTML</label>

Định nghĩa và Cách sử dụng

Thuộc formtính chỉ định hình thức của nhãn.

Giá trị của thuộc tính này phải bằng idthuộc tính của một <form> phần tử trong cùng một tài liệu. 


Hỗ trợ trình duyệt

Attribute
form Yes Yes Yes Yes Yes

Cú pháp

<label form="form_id">

Giá trị thuộc tính

Value Description
form_id Specifies the form element the <label> element belongs to. The value of this attribute must be the id attribute of a <form> element in the same document.

❮ Thẻ HTML <label>