<asp:RadioButtonList ID="rdbtn" runat="server" >
<asp:ListItem Value="firstitem">First</asp:ListItem>
<asp:ListItem Value="seconditem">Second</asp:ListItem>
</asp:RadioButtonList>
我需要根据某些条件设置First
列表项目。也可以根据某些条件取消选择。
答案 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);
});