function tab(date1,date2){
var oDate1 =
new Date(date1);
var oDate2 =
new Date(date2);
if(oDate1.getTime() >
oDate2.getTime()){
console.log('第一个大'
);
} else {
console.log('第二个大'
);
}
}
tab('2015-10-10','2015-10-11');
更多专业前端知识,请上
【猿2048】www.mk2048.com
转载请注明原文地址: https://mac.8miu.com/read-75477.html