gpt4 book ai didi

jquery - 检测单选按钮是禁用还是启用

转载 作者:行者123 更新时间:2023-12-03 21:58:49 26 4
gpt4 key购买 nike

<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
}

请提出一些想法来检测锄头以检查单选按钮是否禁用或启用

最佳答案

使用 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">

关于jquery - 检测单选按钮是禁用还是启用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18973280/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com