gpt4 book ai didi

angular - 确定是否在 Ionic 2 中选中了复选框

转载 作者:太空狗 更新时间:2023-10-29 17:15:57 24 4
gpt4 key购买 nike

如何确定 Ionic 2 中是否选中了 ionic 复选框。

   <ion-item *ngFor="let a of q.Answers">
<ion-label>{{a.AnswerDescription}}</ion-label>
<ion-checkbox (click)="addValue($event)"></ion-checkbox>
</ion-item>

以下返回undefined

 addValue(e): void {
var isChecked = e.currentTarget.checked;
console.log(isChecked);//undefined

}

最佳答案

如果您真的想将 $event 作为参数传递,请使用 e.checked 属性,如下所示。

HTML

<ion-checkbox color="dark" checked="true" (ionChange)="datachanged($event)" ></ion-checkbox>

typescript

datachanged(e:any){
console.log(e);
console.log(e.checked);
}

关于angular - 确定是否在 Ionic 2 中选中了复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40328790/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com