【发布时间】:2020-09-04 04:26:57
【问题描述】:
这里是一个使用aria-describedby的例子
<div role="application" aria-labelledby="calendar" aria-describedby="info">
<h1 id="calendar">Calendar</h1>
<p id="info">
This calendar shows the game schedule for the Boston Red Sox.
</p>
<div role="grid">
...
</div>
</div>
假设我改成这样:
<div role="application" aria-labelledby="calendar" aria-describedby="info">
<h1 id="calendar">Calendar</h1>
<div id="info">
<svg />
<div></div>
<div>
<p>This calendar shows the game schedule for the Boston Red Sox.</p>
</div>
</div>
<div role="grid">
...
</div>
</div>
像 NVDA 这样的屏幕阅读器是否仍然像第一个示例一样宣布This calendar shows the game schedule for the Boston Red Sox?
【问题讨论】:
标签: accessibility wai-aria screen-readers nvda