最新的Web開發教程
 

HTML for Attribute


定義和用法

當與一起使用<label>元素中, for屬性指定了表單元素的標籤,必然。

Ehen與一起使用<output>元素,則for屬性指定和在計算中使用的元素的計算結果之間的關係。


適用於

for屬性可在以下元素一起使用:

分子 屬性
<label> for
<output> for

例子

For示例

三個radio帶標籤按鈕:

<form action="demo_form.asp">
  <label for="male">Male</label>
  <input type="radio" name="gender" id="male" value="male"><br>
  <label for="female">Female</label>
  <input type="radio" name="gender" id="female" value="female"><br>
  <label for="other">Other</label>
  <input type="radio" name="gender" id="other" value="other"><br><br>
  <input type="submit" value="Submit">
</form>
試一試»

Output示例

執行計算和顯示結果在<output>元素:

<form oninput="x.value=parseInt(a.value)+parseInt(b.value)">0
  <input type="range" id="a" value="50">100
  +<input type="number" id="b" value="50">
  =<output name="x" for="a b"></output>
</form>
試一試»

瀏覽器支持

for屬性的每個元素的以下瀏覽器支持:

元件
label
output 10.0 不支持 4 5.1 11.0