jquery通过客户端函数选择radiobuttonlist中的项目
我有以下 ASP.NET RadioButtonList:
<asp:RadioButtonList ID="rbl" runat="server">
<asp:ListItem Text="Type1" Value="1" />
<asp:ListItem Text="Type2" Value="2" />
</asp:RadioButtonList>
我想通过像这样的客户端 jquery 函数以编程方式选择列表中的项目(简化版本):
function BindWidget(widget) {
// Type property of Widget is an int.
$("#<%=rbl.ClientID%>").selectItemByValue(widget.Type);
}
理想情况下,有一些函数 - 在上面的代码中我建议了 selectItemByValue -通过给定值选择 RadioButtonList 中的项目。 jquery有内置类似的功能吗?如果没有,我应该如何实现所需的功能?
I have the following ASP.NET RadioButtonList:
<asp:RadioButtonList ID="rbl" runat="server">
<asp:ListItem Text="Type1" Value="1" />
<asp:ListItem Text="Type2" Value="2" />
</asp:RadioButtonList>
I would like to select an item in the list programmatically via a client-side jquery function like this (simplified version):
function BindWidget(widget) {
// Type property of Widget is an int.
$("#<%=rbl.ClientID%>").selectItemByValue(widget.Type);
}
Ideally, there is some function - in the above code I have proposed selectItemByValue - that selects an item in a RadioButtonList by a given value. Does jquery have a similar function built-in? If not, how should I go about implementing the desired functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个。
try this.
使用以下方法选择它:
Select it using: