通过 jQuery 验证日期字符串格式的最佳方法
IT技术
javascript
jquery
jquery-validate
2021-03-04 09:37:43
2个回答
在这里,这应该适用于任何带有 4 位年份和任何分隔符的日期格式。我从我的插件Ideal Forms 中提取了它,它可以验证日期等等。
var isValidDate = function (value, userFormat) {
var
userFormat = userFormat || 'mm/dd/yyyy', // default format
delimiter = /[^mdy]/.exec(userFormat)[0],
theFormat = userFormat.split(delimiter),
theDate = value.split(delimiter),
isDate = function (date, format) {
var m, d, y
for (var i = 0, len = format.length; i < len; i++) {
if (/m/.test(format[i])) m = date[i]
if (/d/.test(format[i])) d = date[i]
if (/y/.test(format[i])) y = date[i]
}
return (
m > 0 && m < 13 &&
y && y.length === 4 &&
d > 0 && d <= (new Date(y, m, 0)).getDate()
)
}
return isDate(theDate, theFormat)
}
使用正则表达式。
var dateRegEx = /^(0[1-9]|1[012]|[1-9])[- /.](0[1-9]|[12][0-9]|3[01]|[1-9])[- /.](19|20)\d\d$/
console.log("06/06/2012".match(dateRegEx) !== null) // true
console.log("6/6/2012".match(dateRegEx) !== null) // true
console.log("6/30/2012".match(dateRegEx) !== null) // true
console.log("30/06/2012".match(dateRegEx) !== null) // false
编辑 - 免责声明
正如@elclanrs 指出的那样,这只会验证字符串的格式,而不是实际日期,这意味着像 2 月 31 日这样的日期会过去。但是,由于 OP 只要求“验证日期字符串格式”,因此我将这个答案保留在这里,因为对于某些人来说,这可能就是您所需要的。
请注意,OP 使用的jQuery 验证插件也仅验证格式。
最后,对于那些想知道,如果你需要验证的日期,而不仅仅是格式,此正则表达式将有故障的〜2%的速度在域(1-12)/(1-31)/(1900- 2099)日期字符串。请不要在 JPL 的关键任务代码中使用它。