我有以下敲除绑定和视图模型,
var productionLineViewModel = {
ProductionLineInfoList: ko.observableArray([]),
SelectedProductionLineID: ko.observable(0)
};
<select id="drpProductionLine" class="form-control-sm pull-xs-right add-btn" data-bind="options: ProductionLineInfoList, optionsText: 'ProductionLineName', optionsValue: 'ProductionLineID', value: SelectedProductionLineID" style="width: 150px;"></select>
这可以正常工作,但是当我从下一页(使用浏览器后退按钮)返回到此屏幕时,先前选择的值将显示为所选文本。 但是所选择的值是不同的。
如何清除避免敲除保留以前选择的文字?