JS 模板框架 &屏幕阅读器?
有人知道 Handlebars.js、Underscore.js 或 Mustache 等模板框架与屏幕阅读器的配合效果如何吗?
Anyone know how well template frameworks such as Handlebars.js, Underscore.js or Mustache work with screen readers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像 JAWS 这样的屏幕阅读器通常能够阅读任何已阅读的内容。渲染到浏览器中。
问题在于动态替换页面的某些部分时,因为实际上没有办法告诉它在哪里设置光标。使用 Mustache(Handlebars)的优点是,您还可以轻松提供单独的、更易于访问的页面版本(生成的服务器端),而无需重新创建所有模板。
Screen readers like JAWS are usually able to read anything that has been rendered into the browser.
The problem is when dynamically replacing parts of the page because there is not really a way to tell it where to set the cursor. The advantage when using Mustache (Handlebars) is that you can also easily provide a separate, more accessible version of your page (generated server side) without having to recreate all your templates.