Angular2,在多个复选框列表中获取复选框

时间:2016-10-27 07:43:56

标签: angular ionic2

我正在使用多个复选框,如果选中了true,则单击任何复选框时需要按下数组中的值,如果选中false,则从数组中删除。

有没有办法检查jquery等点击上是否选中了复选框?

2 个答案:

答案 0 :(得分:0)

继续评论:

HTML元素:

<input type="checkbox" (click)="onClick($event)" />

TypeScript代码:

onClick(event: any) {
 console.log(event); //you can explore the event object and use the values as per requirement
}

答案 1 :(得分:0)

检查此类似帖子,解决了多个复选框的问题。 angular-2-get-values-of-multiple-checked-checkboxes

我在这里包含了angular2

中复选框状态的简单实现

&#13;
&#13;
username
&#13;
&#13;
&#13;

这里cbArr存储所需的值或选项,cbChecked存储选定的值。在更改复选框值时,cbChecked is updated id复选框项目更新到其中,最后点击&#34; Post&#34;按钮,您只需打印出所选项目列表的cbChecked值即可。