好。如果您不想使用正确的方法
ng-options,则可
ng-selected以为
option指令添加条件检查逻辑的属性,以使预选择工作。
<select ng-model="filterCondition.operator"> <option ng-selected="{{operator.value == filterCondition.operator}}" ng-repeat="operator in operators" value="{{operator.value}}"> {{operator.displayName}} </option></select>**[Working Demo](http://jsfiddle.net/dCFd2/)**



