gpt4 book ai didi

javascript - 引号内的 jquery 变量名

转载 作者:行者123 更新时间:2023-11-30 09:57:31 24 4
gpt4 key购买 nike

我想使用 jquery 在选择控件中进行选择。搜索的值是一个 jquery 变量。我在 stackoverflow 上找到了这个解决方案(有效)。

$("#selectbox option[value = '2011/1']").prop('selected', true);

但我想在单引号中使用一个变量来搜索

var target = '2011/1';

$("#selectbox option[value = 'target']").prop('selected', true);

我尝试了很多有和没有单引号的组合,但都没有成功。那么解决方案是什么?

最佳答案

您可以将字符串与变量连接起来:

$("#selectbox option[value = '"+target+"']").prop('selected', true);

关于javascript - 引号内的 jquery 变量名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33352509/

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