我正在尝试阻止 Angular Mat Header 上的任何键盘活动。我想阻止键盘导航,使用标题输入步骤。我只想使用按钮如何停止该元素上的任何键盘活动,因为 preventDefault() 不起作用。
public ngAfterViewInit(): void {
this.elRef.nativeElement.querySelector('mat-step-
header').addEventListener('keydown', (e) => {
// What should go here?
});
}