我正在使用 Angular 2。
现在我知道这种选择 DIV 项目的方法:
<div #aaa>
</div>
@ViewChild('aaa') private aaa: ElementRef;
ngAfterViewInit() {
let item = this.aaa.nativeElement;
item.style.top = '10px';
}
是否有 RxJS Observable 方法来选择该项目,然后执行类似的操作item.style.top = '10px';
?谢谢