如果您有此代码:
<form name="thing">
<label>Are you a student?</label>
<input name="choice" type="radio" value = "yes" checked />yes
<input name="choice" type="radio" value="no" />no
</form>
然后您可以像这样选择无线电:
document.thing.choice[i].value
然后我假设在这种情况下:
<form name="thing">
<label name ="yes_no">Are you a student?
<input name="choice" type="radio" value = "yes" checked />yes
<input name="choice" type="radio" value="no" />no
</label>
</form>
然后您可以选择这样的无线电值:
document.thing.yes_no.choice[i].value
为什么这适用于表单而不是标签?是因为form是DOM中的对象而标签不是?
此外,名称属性是否仍然对表单有效?或者只应该使用ID&#39;