我正在使用 JAWS 屏幕阅读器在我的页面中测试JQuery 可折叠插件,但是当我单击链接以显示隐藏数据并使用p
关键字时,会读取隐藏数据之外的下一个元素。
我在 Chrome(最新版本)、Firefox 11 和 Internet Explorer 8 中进行了测试。只有 IE 才能正确读取数据。
我尝试了链接中的演示,效果很好。
我的标记是:
<div class='well' id="dialogDadosFuncionario" aria-describedby="dialogDescription">
<div role="group" aria-describedby="dialogDescription">
<h4 id="dialogDescription">
My Data
</h4>
<table summary='My data...'>
...
</table>
</div>
</div>
<!-- In Chrome and FF this table is readed instead of the table above -->
<table summary='something...'>
</table>
我$('#dialogDescription').collapsible();
用来触发插件。
我在这里缺少什么?