我有这些日期变量
minVal = new Date(parseInt(dateArr[2]), parseInt(dateArr[0]) - 1, parseInt(dateArr[1]), 00, 00, 00);
maxVal = new Date(parseInt(dateArrTo[2]), parseInt(dateArrTo[0]) - 1, parseInt(dateArrTo[1]), 23, 59, 59);
我用它们画图表。
我需要区分两件事:
因此,我需要在天
中了解这些日期之间的差异我试着这样做:
if ((maxVal.getMonth() - minVal.getMonth()) == 0)
它适用于某些值,并且不适用于某些值。例如,如果最短日期为29 January 2014
且最长日期为01 February 2014
则不起作用。
我知道,因为我在计算月份。
但我不知道如何计算天数
我知道getDate()
函数会检索天数,但我真的不知道如何使用它。
感谢您的帮助
答案 0 :(得分:1)
试试这个
function workingDaysBetweenDates(startDate, endDate, getWorkingDays) {
startDate = new Date(startDate);
endDate = new Date(endDate);
// Validate input
if (endDate < startDate)
return 0;
// Calculate days between dates
var millisecondsPerDay = 86400 * 1000; // Day in milliseconds
startDate.setHours(0,0,0,1); // Start just after midnight
endDate.setHours(23,59,59,999); // End just before midnight
var diff = endDate - startDate; // Milliseconds between datetime objects
var days = Math.ceil(diff / millisecondsPerDay);
if(getWorkingDays){
// Subtract two weekend days for every week in between
var weeks = Math.floor(days / 7);
days = days - (weeks * 2);
// Handle special cases
var startDay = startDate.getDay();
var endDay = endDate.getDay();
// Remove weekend not previously removed.
if (startDay - endDay > 1)
days = days - 2;
// Remove start day if span starts on Sunday but ends before Saturday
if (startDay == 0 && endDay != 6)
days = days - 1;
// Remove end day if span ends on Saturday but starts after Sunday
if (endDay == 6 && startDay != 0)
days = days - 1;
}
return days;
}
workingDaysBetweenDates(start_date, end_date, false);
以下是工作小提琴:http://jsfiddle.net/kailashyadav/72b27/
日期格式需要是以下之一:2014年4月24日或2014-04-24
第三个参数是您是想获得营业日还是日历日