“NGFOR DI SELECT” Kode Jawaban

NGFOR Pilih Angular

<select [(ngModel)]="passenger.Title">
    <option *ngFor="let title of titleArray" [value]="title.Value">
      {{title.Text}}
    </option>
</select>
Coding Owl

NGFOR DI SELECT

//angular
<select [(ngModel)]="passenger.Title">
    <option *ngFor="let title of titleArray" [value]="title.Value">
      {{title.Text}}
    </option>
</select>
Vivacious Vendace

Pilih dengan NGFOR ON OND dan UL

<div>
    <ul *ngFor="let sentence of sentences;let i = index;" class="collection">
        <li class="collection-item">
            <p [ngClass]="{'red': sentence?.disco == 1 , 'green': sentence?.disco == 2 }">{{sentence.viewValue}} </p>
            <p style="margin-left:20px; font-size:12px!important">
                <select #val (change)="onChange(val.value,i)">
            <option *ngFor="let cat of foods" [value]="cat.value" >
            {{cat.viewValue}}
            </option>
            </select>
         </p>
      </li>
   </ul>
</div>
Alert Ape

Jawaban yang mirip dengan “NGFOR DI SELECT”

Pertanyaan yang mirip dengan “NGFOR DI SELECT”

Lebih banyak jawaban terkait untuk “NGFOR DI SELECT” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya