我在这里有一个例子http://plnkr.co/edit/E3M49KYnzXHYUeKfjNIV?p=preview,我想要的是当我从下拉列表中选择美国时,我想在相同的下拉框中将其替换为美国
如何使用ng-change或ng-blur实现此功能。
<p><strong>Using ng-option directive</strong></p>
<span>Country:</span>
<select ng-model="country" ng-options="country.name for country in countries track by country.code">
<option value="">-- Select a Country --</option>
</select>