个人感觉change没用。
所以用的ngmodelchange
<select
class="form-control customselect" [(ngmodel)]="packagingtype"
name="packagingtype" (ngmodelchange)="packagtypechange()">
<option *ngfor="let type of packagingtypes"
value="{{type.value}}" #packagingtype>
{{type.key}}
</option>
</select>
以上这篇angular4 select选择改变事件的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。