我试图在我的ngclass中加入两个条件,但它没有用,任何人都可以帮助我,thakns。
<input type="password" [ngClass]="{active: submitted && !form.controls['password']}" [formControl]="form.controls['password']" required>
this.submitted = false;
onSubmit(form: any) {
this.submitted = true;
}
我的活动是一个有边框错误的类,我试图在点击时显示错误。
答案 0 :(得分:2)
嗨,你可以试试这个!
为我工作很好!
ng-class=" {'active' : your condition, 'disabled' : your condition } "