Angular2-动态更改颜色按钮



我正在Angular 2和Typescript中创建一个应用程序。

我想根据变量在我的按钮中放置一些背景颜色。

<div>
  <button md-button>1. Choose travel</button>
  <button md-button>2. Choose seats</button>
  <button md-button>3. Fill data</button>
  <button md-button>4. Pay</button>
</div>

我的组件中有一个变量:

currentStep: number = 1; //1 Select travel, 2 Choose seats, 3 Fill data, 4 Pay

,例如,我希望当CurrentStep等于3时,第三个按钮将其背景颜色更改为蓝色。

哪种是实现这一目标的最佳方法?

谢谢。

您可以使用ngClass

[ngClass]="{'fill-data-btn': currentStep == 3 }"

在您的CSS中:

.fill-data-btn{
background-color: blue;
}

只是为了给你一个主意。

<div>
  <button [style.background]=" currentStep === 1 ?'blue':'otherColor'" md-button>1. Choose travel</button>
  <button [style.background]=" currentStep === 2 ?'blue':'otherColor'" md-button>2. Choose seats</button>
  <button [style.background]=" currentStep === 3 ?'blue':'otherColor'" md-button>3. Fill data</button>
  <button [style.background]=" currentStep === 4 ?'blue':'otherColor'" md-button>4. Pay</button>
</div>

相关内容

  • 没有找到相关文章

最新更新