短日期比较 js

function compareDate(startDate, endDate) {
var arr = startDate.split("-");
var starttime = new Date(arr[0], arr[1], arr[2]);
var starttimes = starttime.getTime(); var arrs = endDate.split("-");
var jstimes = new Date(arrs[0], arrs[1], arrs[2]);
var jstimes = jstimes.getTime(); if (starttimes > jstimes) {
return false;
}
else
return true;
}
上一篇:C语言博客作业03--函数


下一篇:《Python Web开发学习实录》高清PDF版|百度网盘免费下载|Python Web开发学习实录