NVDA isn’t reading multiple aria-live tags on single web page.
我在网页上使用了多个 aria-live 标签,当网页上显示错误时,NVDA 只读取第一条错误消息,而不是全部。
我有用户 aria-live=”assertive” 也尝试过使用 aria-live=”polite” 但无法正常工作,任何人都可以为它提供一些解决方案。
以下是我的代码:
1
2 3 4 5 6 7 8 9 10 11 12 13 |
<input type="text" name="username" tabIndex="0"/>
<span class="usernameerr" role="alert" aria–live="assertive">Enter User Name</span> <input type="passowrd" name="password" tabIndex="0"/> <span class="passworderr" role="alert" aria–live="assertive">Enter Password</span> <input type="text" name="repassword" tabIndex="0"/> <span class="repassworderr" role="alert" aria–live="assertive">Renter Password</span> <input type="submit" tabIndex="0"/> |
我们将不胜感激。
如果你有
参见 https://www.w3.org/TR/wai-aria-1.1/#aria-live。它说”用户代理或辅助技术可以选择在发生断言更改时清除排队的更改。”
因此,您可能会听到一个屏幕阅读器而不是另一个屏幕阅读器的问题。您可以通过删除
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269179.html