jquery 如何使用组合框类将数据列表追加到下拉列表中

xv8emn3q  于 2023-03-01  发布在  jQuery
关注(0)|答案(1)|浏览(137)

无法使用jQuery将数据追加到下拉列表中
联森:

var options = '';
options += '<option value="0">Select Client</option>';
$.each(result, function(i, result) {

  options += '<option value="' + result.branchId + '">' + result.branchName + '</option>';

});

$("#branchId").append(options);

超文本:

<select class="form-control  combobox" asp-for="branchId" onchange="getClientDetails()">
  <option value="-1">Select Item </option>
</select>
vmdwslir

vmdwslir1#

确保HTML具有与jquery选择器匹配的ID:

<select class="form-control  combobox" id="branchId" onchange="getClientDetails()">
  <option value="-1">Select Item </option>
</select>

x一个一个一个一个x一个一个二个x

相关问题