为网站创建可访问的工具提示
是否有最佳实践可以使有辅助功能需求的人可以访问工具提示类型功能?
我对 jquery 工具提示感兴趣,并且发现了其他一些工具提示,但在花费任何时间之前我都会三思而后行,因为我担心这些工具提示的可访问性合规性。
Is there a best practice for making tooltip type functionality accessible to people with accessibility needs?
I am interested in jquery tooltip and have found a few others but I am thinking twice before spending anytime as I am concerned about accessibility compliance of these.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用相关元素的
title
属性来提供信息。但是,请注意,虽然大多数浏览器将这些显示为工具提示,但它们不是必需的。几个 jQuery 工具提示库使用title
属性来获取工具提示文本,因此我会研究任何执行此操作的库。Use the
title
attribute of relevant elements to provide information. However, note that although most browsers show these as tooltips, they're not required to. Several jQuery tooltip libraries use thetitle
attribute to grab tooltip text, so I would look into any that do this.