使用 javascript/jquery 比较 DD/MM/YYYY 格式的 2 个日期
假设我从 datepicker 插件收到两个格式为 DD/MM/YYYY
的日期,
var date1 = '25/02/1985'; /*february 25th*/
var date2 = '26/02/1985'; /*february 26th*/
/*this dates are results form datepicker*/
if(process(date2) > process(date1)){
alert(date2 + 'is later than ' + date1);
}
这个函数应该是什么样子?
function process(date){
var date;
// Do something
return date;
}
Suppose I receive two dates from the datepicker plugin in format DD/MM/YYYY
var date1 = '25/02/1985'; /*february 25th*/
var date2 = '26/02/1985'; /*february 26th*/
/*this dates are results form datepicker*/
if(process(date2) > process(date1)){
alert(date2 + 'is later than ' + date1);
}
What should this function look like?
function process(date){
var date;
// Do something
return date;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在“/”上拆分并使用日期构造函数。
Split on the "/" and use the Date constructor.
它可能会更容易:
有关更多详细信息查看此。谢谢。
It could be more easier:
For more details check this out. Thanks.