【发布时间】:2020-10-14 02:53:58
【问题描述】:
React Bootstrap modal 的 tabIndex 为 -1,但它可以通过标签进入并聚焦:
<div role="dialog" aria-modal="true" class="fade modal show" tabindex="-1" style="display: block; padding-right: 0px;">
此处示例:https://codesandbox.io/s/silly-johnson-y6z2e?file=/src/App.js
????焦点对准时,模态框周围会有一个蓝色的大框。
在我的项目中,我有一个模态窗口,上面有两个按钮。我需要能够在按钮之间来回切换(不使用 shift-tab)。当我第三次点击 tab 时,它专注于模态,没有留下焦点按钮。
【问题讨论】:
标签: html reactjs bootstrap-4 bootstrap-modal accessibility