我有以下jsp并尝试放置aria-label属性。
<td>
<strong>abc</strong>
</td>
我尝试使用div,但屏幕读取无法读取“测试”。
<td>
<div aria-label="test"><strong>abc</strong></div>
</td>
我也尝试使用跨度,屏幕阅读器也不会读取“测试”。
<td>
<span aria-label="test"><strong>abc</strong></span>
</td>
任何建议。非常感谢。