gpt4 book ai didi

html - 使用 Bootstrap 字形图标时如何修复 "empty button"Web 可访问性错误

转载 作者:行者123 更新时间:2023-12-04 02:58:53 24 4
gpt4 key购买 nike

我有一个页面,其中一个按钮标有一个字形图标( Bootstrap )。

我有一个新要求,即使用“Wave”工具(https://wave.webaim.org/extension/)检查页面时不能出现“错误”。

问题是 Wave 会为按钮引发错误,因为它是一个“空按钮”。

我尝试使用带有替代文字的图像。这修复了 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>

有没有比虚拟 img 更好的方法来确保可访问性(为 glyphicon 提供替代文本)?

最佳答案

不要添加带有替代文本的图像,而是添加 aria-labeltitle带有所需文本的按钮上的属性。

<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 aria-label="UP button" title="UP button">
<span aria-hidden="true" class="glyphicon glyphicon-chevron-up"></span>
</button>
</div>
</body>

</html>

关于html - 使用 Bootstrap 字形图标时如何修复 "empty button"Web 可访问性错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51150103/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com