gpt4 book ai didi

javascript - 使用 jquery 清除单选按钮列表选择

转载 作者:可可西里 更新时间:2023-11-01 02:33:48 25 4
gpt4 key购买 nike

我想在用户在文本框中输入文本后清除单选按钮列表选择。我尝试了以下代码,但它似乎没有工作,也没有显示任何错误。如果有任何建议,请告诉我。

function ClearRadioButtonList() {
var checkboxlistid9 = "#<%= rblLst.ClientID %>";
$('.checkboxlistid9').attr('checked',false);
}

<telerik:RadMaskedTextBox ID="txtCode" runat="server" Mask="###-##-####" SelectionOnFocus="CaretToBeginning">
<ClientEvents OnBlur="ClearRadioButtonList" />
</telerik:RadMaskedTextBox>

<asp:RadioButtonList ID="rblLst" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Value="1">Unknown</asp:ListItem>
<asp:ListItem Value="2">Not Applicable</asp:ListItem>
</asp:RadioButtonList>

最佳答案

代替:

$('.checkboxlistid9').attr('checked',false);

尝试:

$('.checkboxlistid9').removeAttr('checked');

另外我认为你的 jQuery 选择器是错误的

$('.checkboxlistid9')

我在你的 asp:RadioButtonList 上没有看到类 checkboxlistid9

将查询选择器更改为:

$("table[id$=rblLst] input:radio:checked").removeAttr("checked");

或者

$("table[id$=rblLst] input:radio").each(function (i, x){
if($(x).is(":checked")){
$(x).removeAttr("checked");
}
});

关于javascript - 使用 jquery 清除单选按钮列表选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12482532/

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