html5中role属性的重要性是什么?

时间:2015-01-13 11:56:53

标签: html5 attributes

希望你做得很好,我看到许多人在html5元素中使用了角色属性,所以,我的问题是它对我们有多重要。我们应该在编码中使用它吗?或者它取决于我们使用与否?

示例:

<header role="main_header"></header>
<section role="main_section" class="section">
<article role="mian_article">
<section role="main_section" class="inner_section"></section>
</article>
</section>

它的优点是什么?

2 个答案:

答案 0 :(得分:0)

HTML5的角色属性的用例包括:

  • 可接近性。
  • 设备改编。
  • 服务器端处理。
  • 复杂的数据描述。

来源:http://www.w3.org/wiki/PF/XTech/HTML5/RoleAttribute

答案 1 :(得分:0)

角色用于提供有关元素和其他用途的信息。 有关更多信息,请访问

What is the purpose of the "role" attribute in html?