jQuery.validator.addMethod( name, method [, message ] )
Description: Add a custom validation method. It must consist of a name (must be a legal javascript identifier), a javascript based function and a default string message.
-
jQuery.validator.addMethod( name, method [, message ] )
-
nameType: StringThe name of the method used to identify it and referencing it; this must be a valid JavaScript identifier
-
methodType: Function()The actual method implementation, returning true if an element is valid. First argument: Current value. Second argument: Validated element. Third argument: Parameters.
-
messageType: StringThe default message to display for this method. Can be a function created by ''jQuery.validator.format(value)''. When undefined, an existing message is used (handy for localization), otherwise the field-specific messages have to be defined.
-
For simple one-off validation, you can use the bundled
pattern
method (in additional methods, source in src/additional/pattern.js
) to validate a field against a regular expression. In general, it is a good idea to encapsulate those regular expressions inside their own method. If you need lots of slightly different expressions, try to extract a common parameter.
See also a library of regular expressions.
Examples:
Example: Add a validation method that checks if a value starts with a certain domain.
1
2
3
|
|
Example: Adds a validation method that checks if a given value equals the addition of the two parameters.
1
2
3
|
|
Example: Adds a custom email validation method that is less strict than the one built-in.
1
2
3
4
|
|