我有angularjs下拉列表框:
<select class="form-control"
ng-model="editor.frequency"
ng-options="item as item.Name for item in editor.frequencies"
ng-change="editor.editFrequencyManual = false;">
</select>
用户点击下拉列表框中的选项后,我需要点击(选中)值和旧值(选择前)。
任何想法我怎样才能得到这两个值?是否有我使用的事件函数?