4

我使用 Jquery Validation 插件并验证事件日期,例如

rules:{
       eventdate: 
       {
       required:true,   
       date: true
       }
     }

日期格式类似于“23/August/2013”​​('dd/MM/yy')

但代码在Safari上失败,与 Fx、chrome、opera 一起使用效果更好...

是 Safari 错误还是 Jquery 验证插件错误?

我知道 Jquery Validation 插件支持自定义验证,例如

$.validator.addMethod("customdateValidateRule", function(value, element) 
{  
_isvalidResult=****testfn()***;
return _isvalidResult;
}

我尝试使用 jQuery 验证插件自定义日期格式, 但没有帮助,因为它dd/mm/yyyy 不是用于 ('dd/MM/yy'),而是正则表达式用于“23/August/2013"我不知道!

评论

1)我使用 Datepicker(JqueryUi)来选择日期
2)我正在使用 Jquery Validation 插件(最新)它会验证很多日期格式它也验证“23/August/2013”​​(我假设)但是当我测试它时在 Safari 中,它在 FX、Chrome、Opera 中显示“有效”的位置显示无效。

4

2 回答 2

4

问题是因为 Safari 不能正确处理格式。JQuery 验证插件工具无法验证这种格式(仅发生在Chrome和中Safari)。要解决此问题,请修改验证插件。

如果你想定制它dd/mm/yy,你可以这样做。

$.validator.addMethod(
   "customdateValidateRule", 
   function(value, element) {
      return value.match(/^\d{1,2}\/\d{1,2}\/\d{2}$/);
   },
      "Input a date format of dd/mm/yy:"
);

并将规则验证添加到您的表单中。

$('#myformname')
   .validate({
       rules : {
        myDate : {
          customdateValidateRule : true
        }
       }
   });

如果你想添加测试方法,你应该能够做类似的事情。

var isdate = function(value) {
    var isvalid = /^(\d{1,2})\/(\d{1,2})\/(\d{2})?$/;   
    return isvalid.test(value);
} 

$.validator.addMethod(
   "customdateValidateRule",
   function(value, element) {
      return isdate(value);
   }
);

如果您需要正则表达式来验证dd/mm/yyyy,请将其更改为..

/^\d{1,2}\/\d{1,2}\/\d{4}$/

为了验证您的日期细节23/August/2013,您有几个选择。

有捷径:

/^\d{1,2}\/\b[a-zA-Z]+\/\d{4}$/

正则表达式解释:

^              the beginning of the string
 \d{1,2}       digits (0-9) (between 1 and 2 times)
  \/           look for and match '/'
   \b          the boundary between a word char (\w)
    [a-zA-Z]+  any character of: 'a' to 'z', 'A' to 'Z' (1 or more times)
  \/           look for and match '/'
  \d{4}        digits (0-9) (4 times)
$              before an optional \n, and the end of the string

漫长的道路(具体验证):

/^\d{1,2}\/\b(?:Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|
                May|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sept?|September|
                Oct(?:ober)?|Nov(?:ember)?|Dec(?:ember)?)\/\d{4}$/

正则表达式解释:

^                     the beginning of the string
 \d{1,2}              digits (0-9) (between 1 and 2 times)
  \/                  look for and match '/'
   \b                 the boundary between a word char (\w)
    (?:               group, but do not capture:
     Jan(?:uary)?|    'Jan', group but don't capture optional 'uary', OR
     Feb(?:ruary)?|   'Feb', group but don't capture optional 'ruary', OR
     Mar(?:ch)?|      'Mar', group but don't capture optional 'ch', OR
     Apr(?:il)?|      'Apr', group but don't capture optional 'il', OR
     May|             'May', OR
     Jun(?:e)?|       'Jun', group but don't capture optional 'e', OR
     Jul(?:y)?|       'Jul', group but don't capture optional 'y', OR
     Aug(?:ust)?|     'Aug', group but don't capture optional 'ust', OR
     Sept?|           'Sep', 't' optional, OR
     September|       'September', OR
     Oct(?:ober)?|    'Oct', group but don't capture optional 'ober', OR
     Nov(?:ember)?|   'Nov', group but don't capture optional 'ember', OR
     Dec(?:ember)?    'Dec', group but don't capture optional 'ember'
    )                 end of grouping
     \/               look for and match '/'
      \d{4}           digits (0-9) (4 times)
$                     before an optional \n, and the end of the string
于 2013-08-25T08:28:49.153 回答
3

正如你所说,如果你正在使用JqueryUi Datepicker你有两种方法

1) 正如@hwnd 所说,您必须编辑验证器插件
2) 只需在下面添加我的 hack 并对此感到满意!

    /*Override the validator's Date Validation with mine! */
    $.validator.methods.date=
    function(value, element) {  
    try{
    var _appleDates=$.datepicker.formatDate("mm/dd/yy",$.datepicker.parseDate("dd/MM/yy",value));
    return (!/Invalid|NaN/.test(new Date(_appleDates).toString()));
    }catch(e){return false;};
    };

然后按照你说的使用

rules:{
       eventdate: 
       {
       required:true,   
       date: true
       }
     }

谢谢你快乐!

于 2013-08-26T06:05:01.600 回答