我有一个选择:

  <select id="position">
    <option *ngFor='#contactType of contactTypes' [attr.value]='contactType.contactTypeId'>
      {{contactType.description}}
    </option>
  </select>

我希望在不使用ngmodel的情况下有一个选中的选项:“contacttype.contacttypeid==number”

最佳答案

我想这就是你想要的:

 <select id="position">
    <option *ngFor='#contactType of contactTypes'
      [attr.value]='contactType.contactTypeId'
      [attr.selected]="contactType.contactTypeId == number ? true : null">
      {{contactType.description}}
    </option>
  </select>

要删除selected属性,需要返回nullfalseresults inselected="false")。

09-07 22:39