在选项上使用角度指令 ng-selected 时,绑定模型在您手动更改选择之前不会更新。这是设计好的吗?
<div ng-app ng-init="colors=['red', 'yellow', 'blue']">
<select ng-model=selectedElement>
<option ng-repeat="color in colors" value="{{color}}" ng-selected="$last">{{color}}</option>
</select>
selectedElement: {{ selectedElement }}
</div>