要在Angular Material对话框中设置单选按钮焦点,您可以使用ViewChild
来获取对话框中的单选按钮,并使用focus
方法将焦点设置在该单选按钮上。以下是一个示例解决方案:
mat-dialog-content
包装您的单选按钮组,为每个单选按钮添加#radioButton
模板引用变量:
Option 1
Option 2
Option 3
ViewChild
获取对话框内容中的第一个单选按钮:import { Component, AfterViewInit, ViewChild, ElementRef } from '@angular/core';
@Component({
// ...
})
export class DialogComponent implements AfterViewInit {
@ViewChild('radioButton') radioButton: ElementRef;
ngAfterViewInit() {
setTimeout(() => {
this.radioButton.nativeElement.focus();
}, 0);
}
}
在ngAfterViewInit
钩子中,使用setTimeout
来等待Angular渲染对话框内容并将焦点设置在单选按钮上。请注意,我们在setTimeout
中使用了一个很小的延迟时间(0毫秒),以确保在DOM更新之后将焦点设置在单选按钮上。
import { MatDialog } from '@angular/material/dialog';
import { DialogComponent } from './dialog/dialog.component';
@Component({
// ...
})
export class AppComponent {
constructor(private dialog: MatDialog) {}
openDialog() {
const dialogRef = this.dialog.open(DialogComponent);
}
}
通过调用openDialog
方法,您可以打开您的对话框并将焦点设置在第一个单选按钮上。
请注意,要使ViewChild
正常工作,您需要在app.module.ts
中导入和添加MatDialogModule
和MatRadioModule
。