我生成使用ng-repeat
目錄一些<option>
元件。使用ng-repeat
而不是ng-options
是故意的。角產生一個空<option>
然而,它產生在除了實際陣列的空選項。下面的代碼:
<select name="type" class="form-control" ng-model="selected_type" ng-change="select_change()" >
<option ng-repeat="type in types" value="{{type.value}}">{{type.name}}</option>
</select>
$scope.types = [
{value: '1', name: 'Sale'},
{value: '2', name: 'Other'}
];
$scope.selected_type = $scope.types[0].value;
而且小提琴:http://jsfiddle.net/HB7LU/521/
爲什麼是'NG-options'不適合你打算實現什麼?從選擇 – kubuntu
刪除NG-模型解決了該問題 - http://jsfiddle.net/HB7LU/529/ – user700284
thsi實際工作 http://jsfiddle.net/aBPdv/ – thedjaney