我有一个单选按钮的列表。当我通过它们进行选项卡操作时,似乎只有第一个单选按钮或被选中的那个会得到关注,其余的单选按钮会被跳过。复选框没有这个问题。
我很难向我的质量保证人员解释这不是一个错误。有人能解释一下为什么会这样吗。
Soccer: <input type="checkbox" name="sports" value="soccer" tabindex="1" /><br />
Football: <input type="checkbox" name="sports" value="football" tabindex="2" /><br />
<input type="radio" name="num" value="3" tabindex="3">3<br>
<input type="radio" name="num" value="4" tabindex="4">4<br>
<input type="radio" name="num" value="5" tabindex="5">5<br>
<input type="radio" name="num" value="6" tabindex="6">6<br>
<input type="radio" name="num" value="7" tabindex="7">7<br>
Baseball: <input type="checkbox" name="sports" value="baseball" tabindex="8" /><br />
Basketball: <input type="checkbox" name="sports" value="basketball" tabindex="9" />