如何避免输入类型 ="num" 在 Web 可访问性中被说成以百万计的货币金额
How to avoid input type ="num" being spoken like currency amount in millions in web accessibility
我正在开发一个将在混合移动应用程序中使用的网页,我必须在内容可访问性方面照顾屏幕阅读用户。
用户电话号码输入如下:
<input required type="tel" name="phonenumber" id="phonenumber"
aria-label="put in your mobile number with at least 7 digits"
placeholder="91234567" class="form_control flg_phone_numb">
一切都很好,但是当用户在这里输入了一些值。然后转到其他 input.After,当用户专注于电话输入时,它会说出以百万为单位的输入,例如货币计数。
有什么办法可以强迫它单独说出一个数字。我尝试关注 css,但没有成功。
speak:spell-out ;
speak:digits;
我发现这与操作系统有关。就像 ios 和 android 行为屏幕阅读应该这样做。我查看了 facebook 和 instagram 作为参考。
我正在开发一个将在混合移动应用程序中使用的网页,我必须在内容可访问性方面照顾屏幕阅读用户。 用户电话号码输入如下:
<input required type="tel" name="phonenumber" id="phonenumber"
aria-label="put in your mobile number with at least 7 digits"
placeholder="91234567" class="form_control flg_phone_numb">
一切都很好,但是当用户在这里输入了一些值。然后转到其他 input.After,当用户专注于电话输入时,它会说出以百万为单位的输入,例如货币计数。 有什么办法可以强迫它单独说出一个数字。我尝试关注 css,但没有成功。
speak:spell-out ;
speak:digits;
我发现这与操作系统有关。就像 ios 和 android 行为屏幕阅读应该这样做。我查看了 facebook 和 instagram 作为参考。