admin管理员组文章数量:1345734
I am validating a text field to allow only letters and spaces.
This is the method I am using:
jQuery.validator.addMethod("lettersonly", function(value, element) {
return this.optional(element) || /^[a-z]+$/i.test(value);
}, "Please enter only letters");
But the regular expression is not allowing spaces between words.
I tried :
/^[a-z ]+$/i.test(value)
and /^[a-z\s]+$/i.test(value)
jQuery version - 1.7.1
I am validating a text field to allow only letters and spaces.
This is the method I am using:
jQuery.validator.addMethod("lettersonly", function(value, element) {
return this.optional(element) || /^[a-z]+$/i.test(value);
}, "Please enter only letters");
But the regular expression is not allowing spaces between words.
I tried :
/^[a-z ]+$/i.test(value)
and /^[a-z\s]+$/i.test(value)
jQuery version - 1.7.1
2 Answers
Reset to default 9The regular expression is:
^[a-z\s]*$
LIVE DEMO
jQuery.validator.addMethod("lettersonly", function(value, element) {
return this.optional(element) || /^[a-zA-Z\s]*$/.test(value);
},"Please enter only letters");
replace this : /^[a-z\s]+$/i
by this :/^[a-zA-Z\s]*$/
I checked It works.
本文标签: javascriptAllow only letters and spacesjquery validation pluginStack Overflow
版权声明:本文标题:javascript - Allow only letters and spaces - jquery validation plugin - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743737586a2530290.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论