我正在使用Java脚本动态设置选择框的值

var dropDwnObj = document.getElementById("workingBranchCodeId");
dropDwnObj.options.length = 0;
var anOption = document.createElement("OPTION");
dropDwnObj.options.add(anOption) ;

for(var i = 0; i < jsonResult.subLocationList.length; i++) {
  var anOption = document.createElement("OPTION");
  dropDwnObj.options.add(anOption) ;
  if(selValue == jsonResult.subLocationList[i].displayKey) {
    anOption.innerHTML = jsonResult.subLocationList[i].displayValue;
    anOption.value = jsonResult.subLocationList[i].displayKey;
  }
}


如何将该值作为选择框的选定值?目前它像一个选项,但我希望此选项被选择框的选择

最佳答案

请使用以下多个属性将选择框设置为多选

<select multiple>
</select>

并为以下选项将selected属性设置为true
anOption.selected = true;

Fiddle
希望这会帮助你。

10-06 13:46