我正在使用 SOA 测试报告来查找 508 合规性错误。如果您不知道 508 是什么,请参考此链接:508 标准网站
问题一:
Section 508 - 1194.22: Warning: Link may be required for document plug-in.
发生此错误是因为 html 文档中没有指向 adobe 或 microsoft 的链接来查看 word 和 pdf 文档。对于这些行,我收到此错误:
<a href="hello.pdf">Hello</a>
<a href="world.doc">World</a>
我将这两行添加到 html 文档中修复了这些错误,但错误仍然存在:
<a href="http://get.adobe.com/reader/">Adobe PDF Download</a>
<a href="http://www.microsoft.com/en-us/download/details.aspx?id=4">Word Viewer Download</a>
问题 2:
Section 508 - 1194.22: Warning: Link may be required for plug-in.
此错误与第 1 期中的错误相同,只是我不需要链接即可查看 pdf 或 word 文档;我需要一个链接来查看冲击波。我在这段代码中收到错误:
<object type="application/x-shockwave-flash"></object>
我再次添加了这一行,但错误仍然存在:
<a href="http://get.adobe.com/shockwave/">ShockWave Download</a>