gpt4 book ai didi

javascript - 检查单选按钮是否存在jQuery

转载 作者:行者123 更新时间:2023-11-30 12:15:34 25 4
gpt4 key购买 nike

我根据特定值将单选按钮的选中状态设置为 true;

 var radioValue = data.Activity.Answer == "Please add your answer" ? "valueA" : data.Activity.Answer;
$("input[name=optionRadio" + currentIndex + "][value=" + radioValue + "]").attr('checked', true);

事先检查幻灯片上是否确实存在该单选按钮的最佳方法是什么?

最佳答案

您可以检查 jQuery 对象的 length 来找出它:

if($("input[name=optionRadio" + currentIndex + "]").length > 0 ){
// Radio button actually exists...
}

关于javascript - 检查单选按钮是否存在jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32523432/

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