正确使用 ARIA 标题角色

发布于 2024-10-14 18:39:56 字数 273 浏览 1 评论 0原文

我想知道是否有人知道 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终陌 2024-10-21 18:39:56

为什么不直接使用...

<h1><img alt="..."></h1>

...来代替?这看起来具有相同的功能,但避免了是否支持 ARIA 的问题。

这也对搜索引擎 (SEO) 友好,因为网络爬虫会知道 的内容被用作标题并相应地处理它,而不太可能查看 aria 属性。

Why not just use...

<h1><img alt="..."></h1>

...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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文