typescript Angular 4:从html到ts获取元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript Angular 4:从html到ts获取元素相关的知识,希望对你有一定的参考价值。
@Component({
selector: 'sample',
template: `
<span #tref>I am span</span>
`
})
export class SampleComponent implements AfterViewInit {
@ViewChild("tref", {read: ElementRef}) tref: ElementRef;
ngAfterViewInit(): void {
// outputs `I am span`
console.log(this.tref.nativeElement.textContent);
}
}
以上是关于typescript Angular 4:从html到ts获取元素的主要内容,如果未能解决你的问题,请参考以下文章
带有 TypeScript 的 Angular 4:通过引用传递参数
typescript 4#todoapp-angular-ngrx
typescript 4#todoapp-angular-ngrx
typescript 4#todoapp-angular-ngrx
在 Angular 2/4 中使用 typescript 动态创建 HTML 元素数组
typescript 使用指令将控制集中在角4 #angular