如何在表单元格中应用aria标签

时间:2018-07-31 07:50:48

标签: jquery html css jsp attributes

我有以下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>

任何建议。非常感谢。

0 个答案:

没有答案