我有一个HTML下拉列表。下拉列表的数据源是字典。选定的值键将存储在隐藏字段中。在页面重新加载时,我想将字典中的值设置为下拉列表的选定值。字典键将存储在隐藏字段中。
var IxCustomer = $(_this.IxCustomerHiddenFieldId).val();
$(_this.CustomerSelectId).find("option[value=" + IxCustomer + "]").attr("selected", true);
我该如何修改呢?
答案 0 :(得分:1)
这应该这样做:
$(_this.CustomerSelectId).val(IxCustomer);
设置<select>
元素的值会选择相应的选项。