AngularJs Get the value of the selected option
问题 How can i get the value of the selected option on the ng-change "ReadData" Template is an array of Title, Id, and body <select class="form-control" id="inputEmail" ng-change="ReadData(Template.Title)" ng-model="email.Template" name="inputEmail" ng-options="b.Id as b.Title for b in Template"> </select> 回答1: This might work: ng-change="ReadData(Template[$index].Title)" 回答2: Since your select is bound (by means of ngModel ) to email.Template , you can access it's value from there. E.g.: <select