1. 程式人生 > >我不知道的那些......標簽

我不知道的那些......標簽

asp col put dem RM 屬性 radio 焦點 submit

1.<label>標簽

<label> 標簽為 input 元素定義標註(標記)。

label 元素不會向用戶呈現任何特殊效果。不過,它為鼠標用戶改進了可用性。如果您在 label 元素內點擊文本,就會觸發此控件。就是說,當用戶選擇該標簽時,瀏覽器就會自動將焦點轉到和標簽相關的表單控件上。

<label> 標簽的 for 屬性應當與相關元素的 id 屬性相同。

<form action="demo_form.asp">
  <label for="male">Male</label>
  <input type="radio
" name="sex" id="male" value="male"><br> <label for="female">Female</label> <input type="radio" name="sex" id="female" value="female"><br> <input type="submit" value="提交"> </form>

"for" 屬性可把 label 綁定到另外一個元素。請把 "for" 屬性的值設置為相關元素的 id 屬性的值。

我不知道的那些......標簽