在我的
HTML文档中,我使用罗马数字(例如:MMXV = 2015).
有没有办法通知屏幕阅读器以另一种方式解释某些文本(例如:罗马数字为“二千一十五”而不是M-M-X-V)?
我的猜测是会有一个ARIA属性,但我似乎无法找到它.例如.:
<time datetime="2015" aria-?="Two thousand and fifteen">MMXV</time>
解决方法
使用
aria-label标记为元素提供有意义的描述.
然后,通过将它们包含在将aria-hidden属性设置为true的span元素中来隐藏屏幕阅读器中的元素,从屏幕阅读器中隐藏罗马数字.
<time datetime="2015" aria-label="Two thousand and fifteen"> <span aria-hidden="true">MMXV</span> </time>