1

我正在尝试以角度向本机元素添加多种样式,目前正在使用renderer2API。

我有一个要求,其中样式将动态更改,并且可以有多种样式。这就是为什么我不使用类(addClass/removeClass)。

构造函数(私有 elRef:ElementRef,私有渲染器:Renderer2)

this.renderer.setStyle(this.elRef.nativeElement, "text-align", "center"); …………

需要一种动态添加样式的方法。就像是: this.renderer.setStyle(this.elRef.nativeElement, {style1: value1, style2: value2});

4

2 回答 2

11

试试这个

 constructor(private element: ElementRef){
    let el = this.element.nativeElement;
    el.setAttribute('style', 'color: white; background: red');
  }
于 2020-03-01T12:21:08.113 回答
2

您必须为每种样式多次调用它,或者只需addClass在类中使用和定义样式。

https://angular.io/api/core/Renderer2#addclass

https://angular.io/api/core/Renderer2#setStyle

于 2019-01-15T16:03:40.720 回答