屏幕 reader 在到达锚标记时停止阅读段落
Screen reader stops reading paragraph when it reaches anchor tag
我正在尝试让一段文字在屏幕上连续可读 reader(本例中为 VoiceOver)。 <p>
中的文本被屏幕 reader 读取,但一旦到达第一个 <a>
标签就会停止。然后,用户必须在两个链接之间切换,才能将 <a>
标签中的文本读给他们听。
<p>
Thank you for visiting this website. If you experience any difficulty in accessing this website please email us at <a href="mailto:info@info.com">info@info.com</a>or call us at<a href="tel:1111111111">111-111-1111.</a>
</p>
是否有更易于访问的方式向用户提供信息?
正如我在对该问题的评论中所写,如果您坚持在句子中没有链接(因此阅读中断),我会建议类似的解决方案:
<p>Thank you for visiting this website. If you experience any difficulty in accessing this website please contact us using the mail and phone links supplied below</p>
<p>E-Mail: <a href="mailto:info@info.com">info@info.com</a>, Phone: <a href="tel:1111111111">111-111-1111.</a></p>
(不过,我会保持原样。屏幕阅读器用户已经习惯了)
我正在尝试让一段文字在屏幕上连续可读 reader(本例中为 VoiceOver)。 <p>
中的文本被屏幕 reader 读取,但一旦到达第一个 <a>
标签就会停止。然后,用户必须在两个链接之间切换,才能将 <a>
标签中的文本读给他们听。
<p>
Thank you for visiting this website. If you experience any difficulty in accessing this website please email us at <a href="mailto:info@info.com">info@info.com</a>or call us at<a href="tel:1111111111">111-111-1111.</a>
</p>
是否有更易于访问的方式向用户提供信息?
正如我在对该问题的评论中所写,如果您坚持在句子中没有链接(因此阅读中断),我会建议类似的解决方案:
<p>Thank you for visiting this website. If you experience any difficulty in accessing this website please contact us using the mail and phone links supplied below</p>
<p>E-Mail: <a href="mailto:info@info.com">info@info.com</a>, Phone: <a href="tel:1111111111">111-111-1111.</a></p>
(不过,我会保持原样。屏幕阅读器用户已经习惯了)