用户名表单验证消息
我有一条针对用户名字段的表单验证消息,其中显示以下
名称只能包含字母“.”和 ' ' 字符
或者应该是
名称只能包含字母、点和空格字符
或者应该是
名称只能包含字母、点 (".") 和空格 (" ") 字符
从可用性角度来看,假设最终用户接触计算机的机会非常少。
I have a form validation message for the user name field which says the following
Name can only contain alphabets, '.' and ' ' characters
OR should it be
Name can only contain alphabets, dot and space characters
OR should it be
Name can only contain alphabets, dot (".") and space (" ") characters
Which is preferable from a usability perspective assuming the end users has very less exposure to computers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
建议:包括示例。
A suggestion: include examples.
:
名称只能包含字母字母表、
.
和空格So something like:
Name can only contain letters of the alphabet,
.
and spaces名称必须允许字母(A 到 Z 或 a 到 z)、点(.)、空格和撇号:(')
名称字段中允许使用某些时间数字(对于例外情况)。
全名字段最多允许 100 个字符(名字 =50,姓氏 =50)
Name must be allow Alphabet(A to Z or a to z), dot(.), Space and apostrophe:(')
Some time number are allow in the Name field (for exception case).
Maximum 100 characters are allow in the Full Name field (Firstname =50 and Lastname =50)