0

我在页面上有一个现有RadioButtonList的,需要将第二个按钮设置为默认而不是第一个。

我可能需要javascript在页面上执行此操作,因为我无法编辑原始控件。

<list:RadioButtonList runat="server" Class="class" Text="text"
AlternativeText="alternative text"   /> 

知道如何检测控件并设置其默认值吗?

4

1 回答 1

4

如果您使用 ASP.NET,您可以设置以下内容:

<asp:RadioButtonList ID="RadioButtonList1" runat="server">
  <asp:ListItem Selected="True" ></asp:ListItem>
  <asp:ListItem></asp:ListItem>
  <asp:ListItem></asp:ListItem>
  <asp:ListItem></asp:ListItem>
  <asp:ListItem></asp:ListItem>
</asp:RadioButtonList>

我添加了属性 Selected="True",因此您始终选择默认值。

您也可以在代码中执行此操作:

if (RadioButtonList1.SelectedIndex == -1) //-1 is the indication of none selected
{
    RadioButtonList1.SelectedIndex = 2; //select index 2 (can also be value or text)
}
于 2013-02-01T13:50:28.817 回答