alert(date2);//Sat Oct 29 0112 00:00:00 GMT+0100 (GMT Daylight Time)
alert(date1);//Fri Oct 12 2012 00:00:00 GMT+0100 (GMT Daylight Time)
if (date1.getTime()<date2.getTime()) {
alert('your date can not be earlier than today.');
}
我的问题是为什么我没有看到警报?有什么不对吗?
编辑:
var today = new Date();
date2 = new Date(today.getYear(), today.getMonth(), today.getDate());
为什么这个年份显示为 0112?