我正在使用Rich Harrison的validate.js
库:
http://rickharrison.github.io/validate.js/
我有疑问,我需要验证日期字段格式,格式为DD / MM / YYYY
这是JS代码:
name: 'date-birth',
display: 'Date of Birth',
rules: 'required|max_length[10]'
我已经看到了下一个功能:greater_than_date
,less_than_date
,greater_than_or_equal_date
和less_than_or_equal_date
我该怎么做?