是否可以在RadioButtonList中为列表项设置Tab Index。这是我的代码:
<asp:RadioButtonList ID="radGender" runat="server">
<asp:ListItem Value="M">Male</asp:ListItem>
<asp:ListItem Value="F">Female</asp:ListItem>
<asp:ListItem Value="U">Not Specified</asp:ListItem>
</asp:RadioButtonList>
谢谢, 普利文
答案 0 :(得分:1)
ASP.Net Cannot tab through all radio buttons when selected
与您类似的问题。这应该有助于您所需要的,以及解决您选择无线电接口后遇到的问题。
修改
只是指明他们的解决方案。选择一个选项后,使用箭头键可以让您移动到其他选项,而选项卡则不会。解决此问题的另一个解决方案是使用单独的单选按钮并使用组名属性对它们进行分组。
答案 1 :(得分:1)
有什么问题?
<asp:RadioButtonList ID="radGender" runat="server">
<asp:ListItem Value="M" tabindex="1">Male</asp:ListItem>
<asp:ListItem Value="F" tabindex="2">Female</asp:ListItem>
<asp:ListItem Value="U" tabindex="3">Not Specified</asp:ListItem>
</asp:RadioButtonList>
似乎至少在IE9和FF中工作(对其他人不确定)。