如何使用jquery或javascript在RadioButtonList中选择listitem?

时间:2015-08-21 09:26:50

标签: javascript c# jquery asp.net radiobuttonlist

<asp:RadioButtonList ID="rdbtn" runat="server" >
                                <asp:ListItem Value="firstitem">First</asp:ListItem>
                                <asp:ListItem Value="seconditem">Second</asp:ListItem>
                            </asp:RadioButtonList>

我需要根据某些条件设置First列表项目。也可以根据某些条件取消选择。

1 个答案:

答案 0 :(得分:1)

考虑将RadioButtonList包装在具有特定id或类的某个元素中,并使用它来搜索元素或设置属性ClientIdMode =&#34; Static&#34;避免ASP.Net更改id。

如果你想要的是第一个被选中的话,找到第一个radiobutton并选择它。我不知道你说的是什么病。

jQuery的:

$(function() {
   $("#rdbtn :radio:first").prop("checked", true);
});

选择具有特定值:

   $(function() {
       $("#rdbtn :radio[value='1']").prop("checked", true);
    });