ข้อมูลอ้างอิงHTML

HTML โดยตัวอักษร HTML ตามหมวดหมู่ รองรับ HTML Browser แอตทริบิวต์ HTML HTML Global Attributes เหตุการณ์ HTML HTML สี HTML Canvas HTML เสียง/วิดีโอ ชุดอักขระ HTML HTML Doctypes การเข้ารหัส URL HTML รหัสภาษา HTML รหัสประเทศ HTML ข้อความ HTTP วิธี HTTP ตัวแปลง PX เป็น EM แป้นพิมพ์ลัด


HTML <label> แอตทริบิวต์รูปแบบ

❮ แท็ก HTML <label>

ตัวอย่าง

<label> องค์ประกอบที่อยู่นอกแบบฟอร์ม (แต่ยังคงเป็นส่วนหนึ่งของแบบฟอร์ม):

<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>

ความหมายและการใช้งาน

แอตทริบิวต์formระบุรูปแบบที่เป็นของป้ายกำกับ

ค่าของแอตทริบิวต์นี้ต้องเท่ากับidแอตทริบิวต์ของ <form> องค์ประกอบในเอกสารเดียวกัน 


รองรับเบราว์เซอร์

Attribute
form Yes Yes Yes Yes Yes

ไวยากรณ์

<label form="form_id">

ค่าแอตทริบิวต์

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.

❮ แท็ก HTML <label>