我有下面提到的下拉列表。
<div class="col-md-6">
<label for="inertiaStart" style="float: left; width: 17%;">Inertia Start</label>
<select ng-model="selectedShiftChannel" style="float: left; width: 70%;height: 26px;" (change)="onSelect($event, 'inertiaStart')">
<option>RSH</option>
<option *ngFor="let g of inertiaChannels" [value]="g">
{{g}}
</option>
</select>
</div>
如果惯性通道名称是“GAG”,我希望它被选中。请让我知道如何做到这一点。
答案 0 :(得分:1)
请在选项中更新下面的代码。
<option *ngFor="let g of inertiaChannels" [value]="g" [selected]="g == 'GAG' ? true : false">
{{g}}
</option>