gpt4 book ai didi

javascript - 如何使用jquery向div添加类,其中radio具有一定的值

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

我有这个带有 4 个 radio 的表格:

<form class="options" method="post" id="question" action="index.php">
<div class="form-check form-group">
<label class="form-check-label">
<input class='radio form-check-input' type='radio' name='radio' value='1' />Radio 1
</label>
</div>
<div class="form-check form-group">
<label class="form-check-label">
<input class='radio form-check-input' type='radio' name='radio' value='2' />Radio 2
</label>
</div>
<div class="form-check form-group">
<label class="form-check-label">
<input class='radio form-check-input' type='radio' name='radio' value='3' />Radio 3
</label>
</div>
<div class="form-check form-group">
<label class="form-check-label">
<input class='radio form-check-input' type='radio' name='radio' value='4' />Radio 4
</label>
</div>

<button type="submit" class="btn btn-success" name="next" value="next">NEXT</button>

</form

如何将类alert-success添加到上面的div,其中radio的值为2(使用jquery)?

所以:

 <div class="form-check form-group alert-success"> 
<label class="form-check-label">
<input class='radio form-check-input' type='radio' name='radio' value='2' />Radio 2
</label>
</div>

最佳答案

您可以使用 :has jQuery 选择器:

$('.form-group:has(input[value=2])').addClass('alert-success');

关于javascript - 如何使用jquery向div添加类,其中radio具有一定的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59829735/

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