gpt4 book ai didi

javascript - 如果值在 JQuery 中匹配,则手动选择多个下拉选项

转载 作者:行者123 更新时间:2023-11-30 13:35:51 25 4
gpt4 key购买 nike

如果值匹配,我需要手动选择下拉选项。这是代码:

if($("#hiddenMyField").val() != "") {
$("#dropdown").each(function(i){
$('option', this).each(function() {
if($(this).html() == $("#hiddenMyField").val()) {
// code to select the option
} else {
alert('not matched');
}

});

});
}

如果满足条件,如何选择位于下拉列表中的当前选项?

谢谢

最佳答案

选项有一个 selected 属性:

this.selected = true;

关于javascript - 如果值在 JQuery 中匹配,则手动选择多个下拉选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4886713/

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