我正在使用Angular-cli
。我有:
<div id="show"></div>
我需要在.ts文件中访问此dom元素
像document.getElementById('show')
这样的东西会让我返回null
答案 0 :(得分:1)
试试这个
<div id="show">
constructor(private elRef:ElementRef) {}
ngAfterViewInit() {
this.elRef.nativeElement.querySelector('#show');
}