如何在 Angular Material 中的菜单图标的对话框按钮上默认自动对焦?
How to autofocus by default on dialog button from Menu Icon in Angular Material?
我在菜单图标下有两个菜单项 删除 和 创建。我正在从 菜单图标 中选择任何操作,它会打开带有两个按钮 Delete 和 Cancel 的确认对话框。
从菜单中选择任何菜单项后,最初焦点停留在菜单图标 上。我想默认将 焦点转移到对话框按钮 上,以便在 Enter-Key 命中时,它会在执行所需操作后关闭对话框。
请在此处查看演示 Stackblitz
我解决了这个问题,因为每当我尝试单击“从菜单中删除”时,Spinner 会阻止焦点移动到对话框按钮。
我在 html 中添加了 id="deletebutton"
,如下所示。
<div *ngIf="!loadspinner">
<mat-dialog-content>
<p>Are you sure to delete this?</p>
</mat-dialog-content>
<mat-dialog-actions align="center">
<button id="deletebutton" mat-raised-button color="primary" (click)="deleteDocument()">Delete</button>
<button mat-raised-button mat-dialog-close tabindex="-1" (click)="close()" style="border-color:#3f51b5;">Cancel</button>
</mat-dialog-actions>
</div>
并在 .ts 文件的 ngOnInit 方法中添加 timeout,如下所示。
ngOnInit() {
this.service.validate(this.data).subscribe(value => {
this.loadspinner = false;
if (value != null) {
this.warningMsg = value.statusMessage;
} else {
this.warningMsg = "";
}
//For autoFocus in dialog button as Spinner prevents it to set by deafault
setTimeout(()=>{
document.getElementById('deletebutton').focus();
});
});
}
我在菜单图标下有两个菜单项 删除 和 创建。我正在从 菜单图标 中选择任何操作,它会打开带有两个按钮 Delete 和 Cancel 的确认对话框。
从菜单中选择任何菜单项后,最初焦点停留在菜单图标 上。我想默认将 焦点转移到对话框按钮 上,以便在 Enter-Key 命中时,它会在执行所需操作后关闭对话框。 请在此处查看演示 Stackblitz
我解决了这个问题,因为每当我尝试单击“从菜单中删除”时,Spinner 会阻止焦点移动到对话框按钮。
我在 html 中添加了 id="deletebutton"
,如下所示。
<div *ngIf="!loadspinner">
<mat-dialog-content>
<p>Are you sure to delete this?</p>
</mat-dialog-content>
<mat-dialog-actions align="center">
<button id="deletebutton" mat-raised-button color="primary" (click)="deleteDocument()">Delete</button>
<button mat-raised-button mat-dialog-close tabindex="-1" (click)="close()" style="border-color:#3f51b5;">Cancel</button>
</mat-dialog-actions>
</div>
并在 .ts 文件的 ngOnInit 方法中添加 timeout,如下所示。
ngOnInit() {
this.service.validate(this.data).subscribe(value => {
this.loadspinner = false;
if (value != null) {
this.warningMsg = value.statusMessage;
} else {
this.warningMsg = "";
}
//For autoFocus in dialog button as Spinner prevents it to set by deafault
setTimeout(()=>{
document.getElementById('deletebutton').focus();
});
});
}