如何处理(离子选择)“确定”按钮?

时间:2018-07-25 10:40:10

标签: ionic3

我有一个离子选择指令,并且想处理“确定”按钮,当我单击该按钮时,它应该去调用某些函数。

我知道我们有(ionChange),但只有在更改选定元素时才能完成。

谢谢。

1 个答案:

答案 0 :(得分:1)

您可以简单地执行以下操作:

html:

<ion-select id="something" name="something" [(ngModel)]="something"  (ionChange)="something($event)" data-live-search="true">
        <ion-option *ngFor="let s of something" [value]="s.id">{{s.name}}</ion-option>
    </ion-select>
    <ion-button (click)= "clicked()" >Hit Me!</ion-button>

ts:

clicked(){
  //call your function 
  //use this.lastSelected for your function.
}


something($event) = {
   this.lastselected = $event.target.value;
}