我試圖在輸入結束時獲得帶有Ionic 2的範圍滑塊的值。離子2範圍touchend事件
在doumentation唯一可用的事件是ionChange,它在輸入過程中觸發多次,我只需要最後一個值來執行操作。
我試着手動添加touchend事件,但事件被忽略。
這裏還有一個Plunker與問題。
<ion-range (ionChange)="showVal($event)" (touchend)="presentValue(event)" min="0" max="100" [(ngModel)]="currentTime" color="danger">
<ion-icon small range-left name="sunny"></ion-icon>
<ion-icon range-right name="sunny"></ion-icon>
</ion-range>
有沒有人知道在Ionic 2的範圍滑塊上聆聽touchend事件的方法?