什么是HTML5中角色属性的重要性?

希望你做得很好,我看到很多人都在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>

它的优点是什么?


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

  • 可访问性。
  • 设备适应。
  • 服务器端处理。
  • 复杂的数据描述。
  • 资料来源:http://www.w3.org/wiki/PF/XTech/HTML5/RoleAttribute


    角色用于提供有关元素和其他用途的信息。 欲了解更多信息,你可以访问

    html中“角色”属性的用途是什么?

    链接地址: http://www.djcxy.com/p/36627.html

    上一篇: What is importance of role attribute in html5?

    下一篇: What is HTML Role attribute