ARIA: note 角色

note 角色表示一个部分,其内容对于主内容来说是附注性的或辅助性的。

描述

如果没有任何其他原生元素或其他角色适合该用途,note 角色可以添加到附注性或辅助性内容中。

关联的 WAI-ARIA 角色、状态和属性

aria-labelaria-labelledby(可选)

为 note 命名是可选的,但可以帮助屏幕阅读器用户理解其上下文和目的。如果存在可见的标签,则可以使用 aria-labelledby 提供名称,否则使用 aria-label

示例

html
<h1>Madam C. J. Walker</h1>
<p>
  Madam C.J. Walker was an African American entrepreneur, philanthropist, and
  political and social activist.
</p>
<h2>Early Life</h2>
…
<h2>Career</h2>
…
<p role="note" class="highlight-box">
  At the height of the depression, Madam C. J. Walker trained 20,000 women to
  sell hair pomade door-to-door
</p>
<h2>Activism and Philanthropy</h2>
…

在上面关于 Madam C.J. Walker 的维基百科风格条目中,具有 note 角色的 highlight-box 如果包含引语,则可以是一个 <blockquote>,或者如果有关联的图像,则可以在 <figure> 中用作 <figcaption>。在本例中,由于这两种情况都不合适,因此添加了 note 角色来为附注性内容添加语义。

规范

规范
无障碍富互联网应用程序 (WAI-ARIA)
# note

另见