我该如何在角度上实现这样的目标?
[style.placeholder.color]="active ? 'white' : 'grey'"
请参见绑定输入元素的占位符伪元素。如何绑定到输入元素占位符的样式属性?
<input type="text" (click)="active = !active" [placeholder]="'hello'" [style.placeholder.color]="active ? 'white' : 'grey'">
答案 0 :(得分:0)
是的。您可以使用@ViewChild(#ref),然后使用renderer2自定义元素。