TTY phone 号码是否应该像普通号码一样被超链接?
Should TTY phone numbers be hyperlinked as normal numbers?
大多数网站开发人员都知道为 phone 号码链接使用 tel:
语法以实现轻松的移动拨号:
<a href="tel:555-867-5309">(555) 867-5309</a>
TTY numbers 也应该这样做吗?是否有其他或额外的技术应该用于可访问性?
是的,足够了(也许添加一些描述,说明它是 TTY 号码)。聋人可以点击 link,方法与非聋人相同,如果您不在网站上使用声音就足够了。
在您的 phone 上设置 TTY:https://support.apple.com/en-ca/HT207033
如果您打算让盲人也可以访问您的网站,那么我建议您阅读 https://webaim.org/techniques/hypertext/
根据 RFC3966 :
The terminal
addressed can support any electronic communication service (ECS),
including voice, data, and fax. The URI can refer to resources
identified by a telephone number, including but not limited to
originators or targets of a telephone call.
为了便于访问,您应该在 link 的内容中指明 phone 行是 TTY。
<a href="tel:555-867-5309">TTY: (555) 867-5309</a>
大多数网站开发人员都知道为 phone 号码链接使用 tel:
语法以实现轻松的移动拨号:
<a href="tel:555-867-5309">(555) 867-5309</a>
TTY numbers 也应该这样做吗?是否有其他或额外的技术应该用于可访问性?
是的,足够了(也许添加一些描述,说明它是 TTY 号码)。聋人可以点击 link,方法与非聋人相同,如果您不在网站上使用声音就足够了。
在您的 phone 上设置 TTY:https://support.apple.com/en-ca/HT207033
如果您打算让盲人也可以访问您的网站,那么我建议您阅读 https://webaim.org/techniques/hypertext/
根据 RFC3966 :
The terminal addressed can support any electronic communication service (ECS), including voice, data, and fax. The URI can refer to resources identified by a telephone number, including but not limited to originators or targets of a telephone call.
为了便于访问,您应该在 link 的内容中指明 phone 行是 TTY。
<a href="tel:555-867-5309">TTY: (555) 867-5309</a>