实时辅助功能检查器
我想知道是否有人知道任何程序/工具/或插件提供诸如 Microsoft Office Word 中用于 html 编码的实时辅助功能检查器之类的功能。
我认为如果能够为我们的开发人员提供这样的东西,在他们编码时标记可访问性错误,那就太好了。
I am wondering if anyone knows of any program / tool / or addon that offers a feature like the Live Accessibility Checker in Microsoft Office Word for html coding.
I think it would be great to be able to offer our developers something like this that flags accessibility errors as they are coding them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有许多工具可用于检查已发布网站是否符合 Web 内容可访问性指南 (WCAG),例如 WAVE 和 Total Validator。完整列表保留在 W3 网站上:http://www.w3.org/WAI /RC/tools/complete
但是,在您编码时,IDE 中似乎没有任何可检查的内容,而这正是您正在寻找的内容。最接近的情况是,如果您正在开发 PHP/经典 ASP 之类的东西,可以将更改不断发布到测试网站,然后使用这些外部工具之一执行检查。
一般来说,目前我认为这是最好的选择,包括在任何构建脚本中调用外部工具进行 WCAG 检查,并可能解析输出以获取不合规的数量。它不符合“实时”检查,但可能是次佳的。
编辑 - 一种可能符合要求的工具(对于 Eclipse IDE 的用户):http://www.eclipse。组织/actf/
There are many tools for checking conformance with Web Content Accessibility Guidelines (WCAG) of published websites such as WAVE and Total Validator. A full list is maintained on the W3 website: http://www.w3.org/WAI/RC/tools/complete
However it doesn't appear there are any for checking within an IDE as you're coding, which is what you're looking for. The nearest would be if you're developing something like PHP / classic ASP where changes can be constantly published to a test website and a check subsequently performed with one of these external tools.
In general currently I think that's the best option to consider, including into any build scripts a call to an external tool for WCAG check and potentially parsing the output for number of non-compliances. It doesn't meet the 'live' check, but probably about the next best.
EDIT - one possible tool that may fit the bill (for users of Eclipse IDEs) : http://www.eclipse.org/actf/
我还没有使用过任何在编码时具有动态可访问性检查器的 IDE,但我使用 http://有时,wave.webaim.org/。
I haven't worked with any IDE that has had an on the fly accessibility checker while you code, but I use http://wave.webaim.org/ sometimes.