我写了这样的代码:
<rect x="40" y="40" width="40" height="40" fill="rgb(0,0,255)" role="img"></rect>
在这里,我已将角色指定为Image,那么如何为其指定“alt”属性?
并且不可能拥有alt
,那么在使用叙述者时焦点会如何描述图表?
您可能需要将整个图形放在容器中,并在容器上放置aria-label
,在图表上放置aria-hidden="true"
。 alt
属性仅对<img>
标签和<input type="image">
有效。
<div role="img" aria-label="bar chart showing...">
< <!-- whatever your highchart container tag is --> aria-hidden="true">
<rect...>
</whatever>
</div>