如何在角度2中默认选择第一个选项,以下代码似乎不起作用.
<select id="sType" class="form-control" [(ngModel)]="params.searchType"> <option *ngFor="let t of sTypes" [ngValue]="t.value" [attr.selected]="$index == 0 ? true : null">{{t.name}}</option> </select>
您可以使用索引值默认选择第一个选项.
原文链接:https://www.f2er.com/angularjs/140915.html<select id="sType" class="form-control" [(ngModel)]="params.searchType"> <option *ngFor="let t of sTypes; let i = index" [attr.value]="t.value" [attr.selected]="i == 0 ? true : null">{{t.name}}</option> </select>