当用户使用单选按钮选择他想要的排序类型时,我在对下拉列表进行排序时遇到问题。如果他选择上升,则列表将从最低数字到最高数字排序。如果他选择后代,那么这将是从最高到最低的数字。
这是我的代码
<div *ngIf="!estNom" id="choix" class="row">
<h1 class="col-12"> Les Citoyens </h1>
<section class="col-12">
<h2>Sélection Par NAS:</h2>
<select (change)="surSelection($event.target.value)">
<option selected disabled hidden>Choisissez:</option>
<option *ngFor="let cito of citoyens" [value]="cito.id">{{cito.id}} : {{cito.nom}}</option>
</select>
<button (click)="activerSelectionNom()"> Trier Par Nom </button>
<section >
<input type="radio" id="Ascendant" name="radio1" value="Ascen">
<label for="Ascen">Ascendant</label><br>
<input type="radio" id="Descendant" name="radio2" value="Descen">
<label for="Descen">Descendant</label>
</section>
</section>
</div>
慕码人8056858
皈依舞
相关分类