gpt4 book ai didi

javascript - 在下拉列表中选择值作为默认值

转载 作者:行者123 更新时间:2023-11-30 08:47:04 25 4
gpt4 key购买 nike

您好,我正在尝试在加载时从下拉列表中选择某个选项以显示为选定选项(蓝色背景)。我的 jquery 代码是

$(document).ready(function () {
//ddLiss it he id of the dropdown
//North Side is one of the options that i need selected on document load.
$("#ddList").select("North Side");
});

当我在代码中运行它时,我得到了包含所有值的下拉列表,但“North Side”未显示为所选值。请让我知道如何解决它。谢谢

最佳答案

基于值(value):

$('#ddList').val('North Side');

按文本:

$("#ddList option").each(function() {
if($(this).text() == "North Side") {
$(this).attr('selected', 'selected');
}
});

关于javascript - 在下拉列表中选择值作为默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21044380/

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