收音机的 Tabindex
Tabindex for radios
<label>What is your gender?</label><br>
<input id="male" name="items" type="radio" value="male" checked>
<label for="male">Male</label><br>
<input id="female" name="items" type="radio" value="female">
<label for="female">Female</label><br>
<input id="not-to-say" name="items" type="radio" value="not-to-say">
<label for="not-to-say">I prefer not to say</label><br>
我有单选按钮,我想设置我的 tabindex 以浏览所有这些按钮,我该怎么做?
这实际上是预期的操作。一旦发生制表位停止,您需要使用箭头键 select 正确的。不是标签。
您也可以对每个输入使用 tabindex
,但我不建议这样做。
<label>What is your gender?</label><br>
<input id="male" name="items" type="radio" value="male" checked>
<label for="male">Male</label><br>
<input id="female" name="items" type="radio" value="female">
<label for="female">Female</label><br>
<input id="not-to-say" name="items" type="radio" value="not-to-say">
<label for="not-to-say">I prefer not to say</label><br>
我有单选按钮,我想设置我的 tabindex 以浏览所有这些按钮,我该怎么做?
这实际上是预期的操作。一旦发生制表位停止,您需要使用箭头键 select 正确的。不是标签。
您也可以对每个输入使用 tabindex
,但我不建议这样做。