html 是這樣的
<select name="" id="province" class="form-control ipt" (change)="getCity($event.target.value);">
<option value="" *ngFor="let province of provinceInfo" [value]="province.area_id">{{province.area_name}}</option>
</select>
(change)="getCity($event.target.value);
改變事件 getCity方法 將選中的值傳到后面 js中 或是后台
[value]="province.area_id"
在option 中循環到你數據要傳的id