Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Using the aria-labelledby attribute

这篇翻译不完整。请帮忙从英语翻译这篇文章

描述

aria-labelledby属性用来表明某些元素的id是某一对象的标签。它被用来确定控件或控件组与它们标签之间的联系。使用诸如屏幕阅读器等辅助技术的用户通常使用tabbing在页面的不同区域间进行导航。如果一个输入元素、控件或控件组没有被分配一个label标签,那么屏幕阅读器就无法对其进行阅读。

aria-labelledby属性与aria-describedby属性非常相似: 用一个标签描述某一对象的本质,可能会提供一些用户需要了解的额外信息。

aria-labelledby属性并不仅仅用于表单元素,也可以用来分配静态文本给控件、元素组、面板组以及包含标题和定义等内容的区域等。下方的示例将会展示如何针对这些情况运用这一属性的更多信息。

aria-labelledby属性可以与HTML元素label联合使用,用于提高对于不支持ARIA技术的用户代理的兼容性。

这一属性可以用于任何典型的HTML表单元素,不仅限于已分配ARIA role的元素。

值Value

一个以空格进行分割的元素ID列表。

对于用户代理和辅助技术的可能影响

aria-labelledby和aria-label都被使用时, 用户代理在生成可访问的名称属性时将为aria-labelledby分配更高的优先级。

注意: 由于不同的辅助技术对于这一技术的处理可能不同,以上提供的信息尽是诸多可能的一种,而非一般情况。

示例

示例1: 多标签 Mutiple Labels

在下面的示例中,每个输入域都被它自身的独立标签以及其所在组的标签进行了标识:

<div id="billing">Billing Address</div>

<div>
    <div id="name">Name</div>
    <input type="text" aria-labelledby="name billing"/>
</div>
<div>
    <div id="address">Address</div>
    <input type="text" aria-labelledby="address billing"/>
</div>

示例2: 联结的标题和区域 Associating Headings With Regions

在下面的示例中,标题元素被与它们作为标题的内容联结在一起。注意,所参考的区域是包含标题元素的那个区域。

<div role="main" aria-labelledby="foo">
   <h1 id="foo">Wild fires spread across the San Diego Hills</h1>
   Strong winds expand fires ignited by high temperatures ...
</div>

示例3: 单选组 Radio Groups

在下面的示例中,单选组radiogroup的容器通过一个aria-labeledby属性与他的的标签相联结:

<div id="radio_label">My radio label</div>
<ul role="radiogroup" aria-labelledby="radio_label">
    <li role="radio">Item #1</li>
    <li role="radio">Item #2</li>
    <li role="radio">Item #3</li>
</ul>

示例4: 对话框标签 Dialog Label

在下面的示例中,标记对话框的标题元素通过aria-labeledby属性被引用

<div role="dialog" aria-labelledby="dialogheader">
    <h2 id="dialogheader">Choose a File</h2>
    ... Dialog contents
</div>

示例5: 内联定义 Inline Definition

在下面的示例中,某一事物的被一个叙述性的自然流所描述的定义与这一事物本身通过aria-labeledby属性相联结:

<p>The doctor explained it had been a <dfn id="placebo">placebo</dfn>, or <span role="definition" aria-labelledby="placebo">  
an inert preparation prescribed more for the mental relief of the patient than for its actual effect on a disorder.</span>
</p>

示例6: 定义列表 Definition Lists

在下面的示例中,正式的定义列表中的定义与他们所定义的项目通过aria-labeledby属性相联结:

<dl>
    <dt id="anathema">anthema</dt>
    <dd role="definition" aria-labelledby="anathema">a ban or curse solemnly pronounced by ecclesiastical authority
                                                     and accompanied by excommunication</dd>
    <dd role="definition" aria-labelledby="anathema">a vigorous denunciation : cursor</dd>

    <dt id="homily">homily</dt>
    <dd role="definition" aria-labelledby="homily">a usually short sermon</dd>
    <dd role="definition" aria-labelledby="homily">a lecture or discourse on or of a moral theme</dd>

</dl>

示例7: 菜单

在下面的示例中,一个popup menu通过aria-labeledby属性与其标签相联结:

<div role="menubar">
    <div role="menuitem" aria-haspopup="true" id="fileMenu">File</div>
    <div role="menu" aria-labelledby="fileMenu">
        <div role="menuitem">Open</div>
        <div role="menuitem">Save</div>
        <div role="menuitem">Save as ...</div>
        ...
    </div>
    ...
</div>

操作实例:

注意 

The most common accessibility API mapping for a label is the accessible name property

Used by ARIA roles

all elements of the base markup

Compatibility

TBD: Add support information for common UA and AT product combinations

Additional resources

文档标签和贡献者

 此页面的贡献者: ldwformat
 最后编辑者: ldwformat,