访问 NgClass 中的 HTML 元素值
Access HTML element value inside NgClass
所以我想检索 ngClass 中 html 输入的值,以便稍后在管道中进行比较。
例子:
<input type="email" ... [ngClass]="myPipe(input.value)" >
或者像这样:
<input type="email" ... [ngClass]="item.value | myPipe" >
您知道实现此目标的任何方法吗?
谢谢。
从我上面的评论中复制:
<input type="email" #myInput [ngClass]="myPipe( myInput.value )" >
试试这个:
<input type="email" [ngModel]="input.value" [ngClass]="myPipe(input.value)" >
所以我想检索 ngClass 中 html 输入的值,以便稍后在管道中进行比较。 例子:
<input type="email" ... [ngClass]="myPipe(input.value)" >
或者像这样:
<input type="email" ... [ngClass]="item.value | myPipe" >
您知道实现此目标的任何方法吗?
谢谢。
从我上面的评论中复制:
<input type="email" #myInput [ngClass]="myPipe( myInput.value )" >
试试这个:
<input type="email" [ngModel]="input.value" [ngClass]="myPipe(input.value)" >