你可以使用Angular Material的@ViewChild
装饰器来获取动态表单控件的焦点和HTMLElement引用。下面是一个示例解决方法:
#myInput
。
@ViewChild
装饰器来获取对应的模板引用变量。import { Component, ViewChild, ElementRef } from '@angular/core';
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.css']
})
export class ExampleComponent {
@ViewChild('myInput', { static: false }) myInput: ElementRef;
setFocus() {
this.myInput.nativeElement.focus();
}
}
setFocus
方法。
现在,当点击"Set Focus"按钮时,动态表单控件将获得焦点,并且你可以使用this.myInput.nativeElement
来访问该HTMLElement的其他属性和方法。