正确使用 ARIA 标题角色
我想知道是否有人知道 aria role=heading 是否可用于非文本元素(例如图像)也是如此?
例如:
<img alt="..." role="heading" aria-level="1">
提前致谢。
I wonder if anyone knows if the aria role=heading can be used for non-text elements (such as images) as well?
For example:
<img alt="..." role="heading" aria-level="1">
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不直接使用...
...来代替?这看起来具有相同的功能,但避免了是否支持 ARIA 的问题。
这也对搜索引擎 (SEO) 友好,因为网络爬虫会知道 的内容被用作标题并相应地处理它,而不太可能查看 aria 属性。
Why not just use...
...instead? This would seem to have the same functionality, but avoids the issue of whether ARIA is even supported.
This would also be search-engine (SEO) friendly, in that a web crawler will know that the contents of the is being used as a heading and will treat it accordingly, while it is very unlikely to look at the aria attributes.