ความหมายและการใช้งาน
เมื่อนำมาใช้ร่วมกับ <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.0 | 5.1 | 11.0 |