我有一个页面,其中一个按钮被标记为字形图标(引导程序)。
我有一个新的要求,即当使用“Wave”工具(https://wave.webaim.org/extension/)检查页面时,必须没有“错误”。
问题是Wave为按钮抛出错误,因为它是一个“空按钮”。
我试着使用带有alt文本的图像。这修复了Wave错误,但它使按钮略大,我也对图像为此的滥用感到不安。
这是我的页面显示问题的最小版本:
<html lang="en">
<head>
<title>title</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
</head>
<body>
<div>
<button>
<span class="glyphicon glyphicon-chevron-up"></span>
</button>
</div>
<div>
<button>
<span class="glyphicon glyphicon-chevron-up"></span>
<img src="https://upload.wikimedia.org/wikipedia/commons/c/ce/Transparent.gif" alt="UP button">
</button>
</div>
</body>
</html>
有没有比dummy img更好的方法来确保可访问性(为字形图标提供替代文本)?
2条答案
按热度按时间camsedfj1#
在按钮上添加
aria-label
或title
属性并添加所需文本,而不是添加带有alt文本的图像。ugmeyewa2#
为了获得良好的可访问性,每个交互元素都需要有一个文本,在您的情况下,您可以在一个额外的标记中向按钮元素添加相应的文本,该标记不可见,但在技术上是可读的。
此类已包含在引导程序https://getbootstrap.com/docs/4.1/getting-started/accessibility/中
要使文本可读,还可以添加
aria-label
属性,如下所述:https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-label_attribute但我不确定这是否符合您提到的检查器。您的代码扩展了附加说明和aria-label: