在Angular 2中更改背景颜色的方法是通过CSS样式来实现。以下是一种实现方式:
:host {
background-color: red;
}
.my-element {
background-color: blue;
}
<div [style.background-color]="backgroundColor">...</div>
然后,在组件的逻辑中,根据条件设置"backgroundColor"属性的值。例如,可以在组件的构造函数中初始化该属性,或者在某个事件处理程序中更改它。
领取专属 10元无门槛券
手把手带您无忧上云