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

Share Improve this question edited Apr 7, 2012 at 19:28 gdoron 150k59 gold badges302 silver badges371 bronze badges asked Apr 4, 2012 at 17:58 user1313360user1313360 11 gold badge1 silver badge1 bronze badge
Add a ment  | 

2 Answers 2

Reset to default 9

The 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