如何使用 jquery 或 javascript select RadioButtonList 中的列表项?
How to select the listitem in RadioButtonList using jquery or javascript?
<asp:RadioButtonList ID="rdbtn" runat="server" >
<asp:ListItem Value="firstitem">First</asp:ListItem>
<asp:ListItem Value="seconditem">Second</asp:ListItem>
</asp:RadioButtonList>
我需要将 First
列表项设置为根据某些条件选择。也可以根据某些条件取消选择。
考虑将 RadioButtonList 包装在具有特定 ID 或 class 的某些元素中并使用它来搜索元素或设置 属性 ClientIdMode="Static" 以避免 ASP.Net从更改 id.
如果您只想第一个 selected,那么找到第一个单选按钮并 select 它。不知道你说的是什么情况
jQuery:
$(function() {
$("#rdbtn :radio:first").prop("checked", true);
});
Select 具有特定值:
$(function() {
$("#rdbtn :radio[value='1']").prop("checked", true);
});
<asp:RadioButtonList ID="rdbtn" runat="server" >
<asp:ListItem Value="firstitem">First</asp:ListItem>
<asp:ListItem Value="seconditem">Second</asp:ListItem>
</asp:RadioButtonList>
我需要将 First
列表项设置为根据某些条件选择。也可以根据某些条件取消选择。
考虑将 RadioButtonList 包装在具有特定 ID 或 class 的某些元素中并使用它来搜索元素或设置 属性 ClientIdMode="Static" 以避免 ASP.Net从更改 id.
如果您只想第一个 selected,那么找到第一个单选按钮并 select 它。不知道你说的是什么情况
jQuery:
$(function() {
$("#rdbtn :radio:first").prop("checked", true);
});
Select 具有特定值:
$(function() {
$("#rdbtn :radio[value='1']").prop("checked", true);
});