嗨,我正在尝试从下拉列表中选择某个选项,以显示为选定选项(蓝色背景)。
我的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”未显示为选定的值。请让我知道如何解决。谢谢

最佳答案

基于价值:

$('#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/

10-11 13:15