Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 HTML 表格中的单元格中添加复选标记 (✓)。
谁能告诉我是否可以使用十六进制代码,即屏幕阅读器可以识别它吗?或者是否有更易于访问的方法来解决此问题,或者是否无法创建 Web 可访问的复选标记?
屏幕阅读器之间的十六进制代码可能不一致。
可以肯定的是,您可以将复选标记设置为图像并使用alt属性:
alt
<img src="/check.png" alt="check">
这样,所有屏幕阅读器都会将其读作“检查”。