Angular是不推荐直接通过DOM操作获取元素的,要操作元素就通过@ViewChild装饰器。
在HTML中对元素添加引用myInput:
<inputtype="text"#myInput>
在ts中可以通过ViewChild获取指定元素的引用:
import { ViewChild } from '@angular/core';
@ViewChild('myInput') input;
this.input.nativeElement.focus()
nativeElement获取的是原始DOM元素,至于你想在哪里自动获取焦点,就看你的业务逻辑了,可以配合Angular对应的生命周期使用。
这是在segmentfault上别人给我的答案。
所以用到了
ngAfterViewInit()
:
void {
this.
renderer.
invokeElementMethod(
}
export class ModalDirective implements AfterViewInit,OnDestroy { ngAfterViewInit() { } ngOnDestroy() { } }
不然会报错
Implement lifecycle hook interface AfterViewInit for method ngAfterViewInit
原文链接:https://www.f2er.com/angularjs/145660.html