gpt4 book ai didi

jquery - 如何将某个单选按钮设置为选中 "true"

转载 作者:行者123 更新时间:2023-12-01 06:47:03 25 4
gpt4 key购买 nike

我的网络表单标记如下:

<input type="radio" value="0" name="fieldSelection[1]" class="optionA">
<input type="radio" value="0" name="fieldSelection[1]" class="optionB">
<input type="radio" value="0" name="fieldSelection[1]" class="optionC">
<input type="radio" value="0" name="fieldSelection[2]" class="optionA"><!--want to check this one-->
<input type="radio" value="0" name="fieldSelection[2]" class="optionB">
<input type="radio" value="0" name="fieldSelection[2]" class="optionC">
<input type="radio" value="0" name="fieldSelection[3]" class="optionA">
<input type="radio" value="0" name="fieldSelection[3]" class="optionB">
<input type="radio" value="0" name="fieldSelection[3]" class="optionC">

如何将其中一个复选框设置为选中 - 例如,选中 fieldSelection[2] 的按钮 optionA

这是我所拥有的,但显然它会检查所有 3 个按钮:

$('.optionA').prop('checked', true);

最佳答案

您可以使用attribute selector :

$('input.optionA[name="fieldSelection[2]"]').prop('checked', true);

Fiddle

关于jquery - 如何将某个单选按钮设置为选中 "true",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23343492/

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