最好的方法是让屏幕阅读器类型的辅助设备以有洞察力的方式宣布部分?
理想情况下,与其将这项工作传递给子<h1>
标签,有没有办法标记<section>
可以用于此目的的实际标签?
将 an<article>
分解为<section>
s 的想法是<section>
s 不适合联合,但它们仍应在文档结构中具有自己的固有身份。作为 HTML 作者,我们如何记录这一点?
示例:给定这棵树:
Article: A review of the iPad
section: brief preamble, statement of goals
section: aesthetics
section: performance
section: target market
section: wrap up
我们如何标记<section>
s 以使辅助设备能够从<section>
标签中提取部分焦点?
这是一个 HTML 示例:
<!DOCTYPE html>
<html>
<head> <!-- meta data and css --> </head>
<body>
<article>
<h1>An article about markup!</h1>
<section id="examele_1">
<h1>Example 1</h1>
</section>
<section class="example 2">
<h1>Example 2</h1>
</section>
<section data-subject="Example 3">
<h1>Example 3</h1>
</section>
</article>
</body>
</html>
那么:示例 1 到 3 中的任何一个都是不错的选择,还是有更好的选择?