<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
}
ラジオボタンが無効になっていることを確認するために鍬を検出するためのアイデアを提案してくださいo有効にする
JQueryを使用してラジオボタンリストのクリックイベントにアタッチしてから、次のように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
)を検索し、クリックイベントをそれに接続するためです。
<asp:RadioButtonList ID="rdStatus" runat="server" RepeatDirection="Vertical">
これを試して:
<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
{
}
});