<asp:RadioButtonList ID="rdStatus" onclick="javacript:display();" runat="server" RepeatDirection="Vertical">
<asp:ListItem Text="Temporary Waiver" Value="T" Selected="True"></asp:ListItem>
<asp:ListItem Text="Never Expires" Value="P"></asp:ListItem>
<asp:ListItem Text="Expires after the close of:" Value="W"></asp:ListItem>
</asp:RadioButtonList>
function display()
{
if(radiobuton is enabled)
//code here
else
//code here
}
请提示一些想法,以检测如何检查单选按钮是否启用
答案 0 :(得分:8)
使用jQuery附加到单选按钮列表的click事件,然后使用jQuery :enabled
选择器,如下所示:
$('#rdStatus').click(function () {
if($(this).is(':enabled')) {
// Do enabled radio button code here
}
else {
// Do disabled radio button code here
}
});
现在您可以删除单选按钮列表标记的onclick
属性,因为jQuery将找到单选按钮列表(rdStatus
)并将click事件连接到它。< / p>
<asp:RadioButtonList ID="rdStatus" runat="server" RepeatDirection="Vertical">
答案 1 :(得分:0)
试试这个:
<asp:RadioButtonList ID="rdStatus" runat="server" RepeatDirection="Vertical">
<asp:ListItem Text="Temporary Waiver" Value="T" Selected="True"></asp:ListItem>
<asp:ListItem Text="Never Expires" Value="P"></asp:ListItem>
<asp:ListItem Text="Expires after the close of:" Value="W"></asp:ListItem>
</asp:RadioButtonList>
$("#<%=rdStatus.ClientID%>").click(function(){
if($(this).attr('enabled'))
{
$(this).removeattr('enabled');
$(this).attr('disabled',true);
}
else
{
}
});