Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

angular - How to check is checkbox is checked angular2

I want to check is checkbox is checked or unchecked in an if and else statement.

<md-checkbox id="mon" (change)="mon($event)" [checked]="true">Checked</md-checkbox>



mon(e){
    if(e.target.checked){
      console.log("This is checked")
    } else {
      console.log("unchecked");
    }
  }

I think I am doing it really wrong. I keep getting can't get checked of undefined. How is the way to do this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

declare a variable called it filter

filter: boolean= false;

then use ngModel in html part to access and assign its value.

<input type="checkbox" [(ngModel)]="filter" (click)="filterData()">

it will call a function filterData() which you can use to do all your functionality

filter(){
  this.filter = !this.filter;// this will change value of it true and false 
}

for more checkbox you can use declare more variable like filter1: boolean


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...