我有两个日期,即 newdate 和 haha。newdate 将是今天的日期(当前日期),哈哈日期可以是任何日期。下面的代码对我不起作用,因为我提供了
newdate:2014 年 2 月 7 日 10:04
哈哈:2014 年 2 月 3 日 00:00
它总是来到其他部分
日期:03-Feb-2014
时间:00:00
var haha=sdate+" "+stime;
var newdate=new Date();
var date_str = moment(newdate).format("DD-MMM-YYYY HH:mm");
alert(date_str);
if (Date.parse(haha) < Date.parse(date_str)) {
alert("Start date cannot be less than today's date");
return false;
}
else {
alert("hahahhahaha");
}
注意我正在使用带有 langs javscript 的时刻