gpt4 book ai didi

jquery - 使用 jQuery 设置选择

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

我正在尝试更改此列表中选定的选项。它仅对某些人有效,对其他人无效?

selectedVal 将是 Kelly Green、Navy 等...

 var selectedVal = $(this).text();

$("#product-variants-option-0 option[text=" + selectedVal+"]").attr("selected","selected") ;

这是选择列表:

<select class="single-option-selector" id="product-variants-option-0">
<option value="Gunmetal Heather">Gunmetal Heather</option>
<option value="Kelly Green">Kelly Green</option>
<option value="Navy">Navy</option>
</select>

最佳答案

在选择器中使用值属性而不是文本。即:

$("#product-variants-option-0 option[value=" + selectedVal+"]").attr("selected","selected") ;

关于jquery - 使用 jQuery 设置选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4572567/

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