0
我有一個下拉組件,目前正在返回幾個選項。我想添加功能,當選擇「其他」選項時,div將顯示。我不確定如何爲「其他」的情況寫支票。根據下拉選項顯示div
這裏是到目前爲止的代碼:
<div class="p-2 col">
<select class="form-control w-100" type="checkbox" formControlName="paidToId">
<option *ngFor="let lookupItem of leHudItemInfo.availablePaidTos" [ngValue]="lookupItem.id">
{{lookupItem.name}}
//this returns the options, but how can I add a flag for only the string of "other"
</option>
</select>
</div>
<div class="showOther" ng-show="paidToOptions=='other'">
</div>
HTML:<div class="" ng-show="selection=='other'"> </div>
謝謝!並感謝您對angular2的評論:)我還是新手! – cdb