js给DropdownList赋值

时间:2023-03-09 16:24:27
js给DropdownList赋值
var row = [{ "code": "", "model": "APOLLO" }, { "code": "", "model": "APOLLO M/B1"}];
for (var i = ; i < row.length; i++) {
  var addOption = document.createElement("option");
  addOption.text = row[i]["model"];
  addOption.value = row[i]["model"];
  document.getElementById("ddlModel").add(addOption);
}
<asp:DropDownList ID="ddlModel" name="ddlModel" runat="server" Font-Size="9pt" Width="105px"
  CssClass="DropDownList">
</asp:DropDownList>

js给DropdownList赋值