如何在JQuery

时间:2016-10-10 11:10:37

标签: javascript c# jquery asp.net

我在asp.net页面中有一个UserControl。 UserControl包含具有4个项目的RadioButtonList控件。对于RadioButtonList中的每个控件,我有如下的唯一ID。

rdlUser_0 - Leave
rdlUser_1 - Available
rdlUser_2 - Available at Home
rdlUser_3 - Available at Office

以下是RadioButtonList的标记

<asp:RadioButtonList ID="rdlUser" runat="server" ClientIDMode="Static">
            </asp:RadioButtonList>

如何在jQuery中将更改事件附加到rdlUser?

ConfirmationMessage

1 个答案:

答案 0 :(得分:2)

$("[id^='rdlUser_'][type='radio']").change(function(){ //your code here });

这将绑定一个函数来改变所有单选按钮的事件