选择标签占位符

时间:2019-06-04 08:57:33

标签: html angular

我有以下7号角度的选择标签代码

<select class="form-control fixed-select" name="country" #country=ngModel
                  [(ngModel)]="employeeObject.address.country.id" (change)="onCountrySelect($event.target.value, false)"
                  required>
                  <option value="" selected disabled>Select country</option>
                  <option *ngFor="let country of countries" value={{country.id}}>{{country.countryCode}}</option>
                </select>

即使我使用了SELECTED属性,默认选择也不起作用。 该如何解决?

1 个答案:

答案 0 :(得分:0)

您的变量country必须具有空字符串作为值,才能与您的选项匹配。