【问题标题】:How to remove auto focus on button inside angular material modal?如何删除角材料模态内按钮的自动对焦?
【发布时间】:2019-07-05 18:50:33
【问题描述】:

当我们将按钮放在角度材质对话框中时,它会自动聚焦该模式中的第一个按钮。

Stackblitz example

【问题讨论】:

  • 您可以在每个按钮上添加“tabIndex=-1”

标签: css angular dialog angular-material angular-cdk


【解决方案1】:

您可以将autofocus = false 属性添加到对话框以禁用自动对焦。

示例如下:

const dialogRef = this.dialog.open(DialogOverviewExampleDialog, {
   width: '250px',
   data: {name: this.name, animal: this.animal},
   autoFocus: false 
});

【讨论】:

    猜你喜欢
    • 2018-08-31
    • 1970-01-01
    • 2020-12-26
    • 2020-05-04
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多