同学们,使用 npm / bower 包管理工具,可完美解决包之间的依赖:
$ npm install bootstrap jquery
$ bower install bootstrap (jQuery也被下载下来了)
$ npm install bootstrap jquery
$ bower install bootstrap (jQuery也被下载下来了)
2017-09-13
role的作用是描述一个非标准的tag的实际作用。比如用div做button,那么设置div 的 role=“button”,辅助工具就可以认出这实际上是个button。
而aria-*的作用就是描述这个tag在可视化的情境中的具体信息。比如,
<div role="checkbox" aria-checked="checked"></div>
辅助工具就会知道,这个div实际上是个checkbox的角色,为选中状态。
http://blog.csdn.net/huaishitou/article/details/21597767
而aria-*的作用就是描述这个tag在可视化的情境中的具体信息。比如,
<div role="checkbox" aria-checked="checked"></div>
辅助工具就会知道,这个div实际上是个checkbox的角色,为选中状态。
http://blog.csdn.net/huaishitou/article/details/21597767
2017-09-11