js计算两个日期之间的天数(去除双休日)

 

//对于请假开始时间和结束时间中间的周末去除处理

//days总天数(未去除周末)

function checkWeekDay(beginDay, endDay, days) {
    var weekEndCount = 0;
    if (days < 1) {
        //判断开始时间是否是周末
        if (beginDay.getDay() == 6 || beginDay.getDay() == 0)
              {
                weekEndCount += 1;
            }
         
    } else if (days < 7)
          {
            if (beginDay.getDay() <   endDay.getDay() &&   endDay.getDay() == 6)
                  {
                    weekEndCount += 1;
                }
            else if (beginDay.getDay() < endDay.getDay() &&   beginDay.getDay() == 0) {
                weekEndCount += 1;
            } else if (beginDay.getDay() > endDay.getDay()) {
                weekEndCount += 2;
            }
             
        }
    else if (days >= 7) {
        if (days % 7 > 1) {
            //以周六为界限,判断开始时间和周六的差值与总天数除以7的余数的关系判断是否需要增加额外的周末
            if (6 - beginDay.getDay()  == days % 7) {
                weekEndCount += parseInt(days / 7) * 2;
            } else if (6 - beginDay.getDay() + 1 == days % 7) {
                weekEndCount += parseInt(days / 7) * 2;
                weekEndCount += 1;
            } else {
                weekEndCount += parseInt(days / 7) * 2;
                weekEndCount += 2;
            }

        } else {
            weekEndCount += parseInt(days / 7) * 2;
        }
    }
    return weekEndCount;
}

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值