<div class="colorBg">这里是内容 </span></div>
在 xxx.component.ts里面
import { ElementRef } from '@angular/core';
constructor( private el: ElementRef ) {}
ngOnInit() {
this.el.nativeElement.querySelector('.colorBg').style.background = '#fff';
}