gpt4 book ai didi

javascript - 单选按钮检查不区分大小写的匹配

转载 作者:行者123 更新时间:2023-11-28 19:57:51 25 4
gpt4 key购买 nike

我有一个单选按钮,其中包含值 a,b,c,d 。现在我尝试仅检查单选按钮无论大小写,其值与var Correct匹配,其中包含诸如AB,C,D 。请让我知道如何使用 javascript/jquery 做到这一点?我尝试了类似以下的方法,但没有成功。

$("#radio" + correcto).prop("checked", true);

最佳答案

您是否有意使用 ID 选择器来访问单选按钮?我不认为这真的是你想要的。尝试以下其中一项:

$(':radio[value=' + correct.toLowerCase() + ']').prop('checked', true)

$(':radio').each(function() {
$(this).prop('checked', $(this).val() === correct.toLowerCase());
})

关于javascript - 单选按钮检查不区分大小写的匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22207566/

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