我有以下select
元素,它是使用angular的ngOptions指令動態填充的。AngularJS ngOptions選擇默認選項
<select ng-options="group.parameterGroupId as group.name for group in parameterGroups"
ng-change="getParameterGroup(group.parameterGroupId)"
ng-model="group.parameterGroupId">
<option value="">== Choose Group ==</option>
</select>
我如何編程選擇默認選項== Choose Group ==
以後,在下拉列表中另一個值已被選定後?
我試圖在我的控制器,這兩者都不如預期工作設置$scope.group.parameterGroupId
到null
和""
。在這兩種情況下,當前選中的選項都保持選中狀態。
使用AngularJS v1.4.3。
這是重複的http://stackoverflow.com/questions/24411820/select-the-blank-option-of-select-box-programmatically-in-angularjs-directive? –
不,這個問題不涉及ngOptions。 –