| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- (function($) {
- $.fn.bootstrapValidator.i18n.regexp = $.extend($.fn.bootstrapValidator.i18n.regexp || {}, {
- 'default': 'The value does not match the pattern'
- });
- $.fn.bootstrapValidator.validators.regexp = {
- html5Attributes: {
- message: 'message',
- regexp: 'regexp'
- },
- enableByHtml5: function($field) {
- var pattern = $field.attr('pattern');
- if (pattern) {
- return {
- regexp: pattern
- };
- }
- return false;
- },
- /**
- * Check if the element value matches given regular expression
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consists of the following key:
- * - regexp: The regular expression you need to check
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- var regexp = ('string' == typeof options.regexp) ? new RegExp(options.regexp) : options.regexp;
- return regexp.test(value);
- }
- };
- }(window.jQuery));
|