@Component({ .... templateUrl: 'mytemplate.html' }) export class MyComponent{ @ViewChild('selector') private someName; constructor() { //this is your dom //this.someName.nativeElement } }
在你的模板类中,你必须指定谁是那个选择器
<div #selector> </div>
或者您可以使用ElementRef类
import {Component,AfterViewInit,ElementRef} from "@angular/core"; export class MyComponent implements AfterViewInit { constructor(protected elementRef: ElementRef) { } ngAfterViewInit() { //you can reach your dom element by using //this.elementRef.nativeElement } }
你可以自由地使用像Jquery这样的第三方库来获取addClass,在typescript中使用removeClass.