无法访问angular2中的dom元素

时间:2017-11-25 13:36:09

标签: angular typescript

我正在使用Angular-cli。我有:

<div id="show"></div>

我需要在.ts文件中访问此dom元素 像document.getElementById('show')这样的东西会让我返回null

1 个答案:

答案 0 :(得分:1)

试试这个

<div id="show">

constructor(private elRef:ElementRef) {}

ngAfterViewInit() {
 this.elRef.nativeElement.querySelector('#show');
}