HTML <label>表單屬性用於指定<label>元素可以包含一個或多個表單。
用法:
<label form="form_id">
屬性值:它包含單個值form_id,該值包含值,即form_id,該值指定一個或多個label元素所屬。此屬性的值應為<form>元素的ID。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML label form Attribute
</title>
</head>
<body style = "text-align:center">
<h1 style = "color:green;">
GeeksforGeeks
</h1>
<h2>
HTML label form Attribute
</h2>
<form action="#" method="get" id="GFG_form">
<!-- Starts label tag from here -->
<label for = "student">
Student
</label>
<input type = "radio" name = "Occupation"
id = "student" value = "student"><br>
<label for = "business">
Business
</label>
<input type = "radio" name = "Occupation"
id = "business" value = "business"><br>
</form>
<label for="other" form="GFG_form">Other</label>
</body>
</html>
輸出:
支持的瀏覽器:<label>表單屬性支持的瀏覽器如下:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Safari
- Opera
相關用法
- HTML <form> name屬性用法及代碼示例
- HTML form屬性用法及代碼示例
- HTML <legend> form屬性用法及代碼示例
- HTML <select> form屬性用法及代碼示例
- HTML <meter> form屬性用法及代碼示例
- HTML <button> form屬性用法及代碼示例
- HTML <form> onreset屬性用法及代碼示例
- HTML <input> form屬性用法及代碼示例
- HTML <output> form屬性用法及代碼示例
- HTML <textarea> form屬性用法及代碼示例
- HTML <object> form屬性用法及代碼示例
- HTML <form> autocomplete屬性用法及代碼示例
- HTML <form> target屬性用法及代碼示例
- HTML <form> method屬性用法及代碼示例
- HTML <form> enctype屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <label> form Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。