JS日期计算

一、工具函数

// 补0函数,1补成01
function padding(num) {
    return num < 10 ? '0' + num : num
}
// 将日期格式化为2019/03/19
function formalDate(year, month, day) {
    return [year, padding(month), padding(day)].join('-')
}
// 日期格式化
function formalDate1(t) {
    var d = new Date(t);
    return [d.getFullYear(), padding(d.getMonth() + 1), padding(d.getDate())].join('-');
}

二、日期计算

1)根据给定年份计算周时间段列表:
function countWeekList(year) {
     var firstDay = new Date(year, 0, 1) // 获取给定年份第一天的日期
     while (firstDay.getDay() != 1) { // 获取给定年份第一个完整周的周一日期
        firstDay.setDate(firstDay.getDate() + 1)
     }
     // 获取给定年份下一年的第一天的日期,用来计算给定年份最后一天的日期,省去计算平闰年的步骤
     var lastDay = new Date(year + 1, 0, 1)
     var i = 1  // 控制输出
     var toDate, fromDate
     for (var from = firstDay; from < lastDay;) { 
         // 记录第i个周一的日期
         fromDate = formalDate(year, from.getMonth() + 1, from.getDate())
         from.setDate(from.getDate() + 6) // +6获取第i个周天的日期
         if (from < lastDay) { // 日期未超过下一年的第一天时
              toDate = formalDate(year, from.getMonth() + 1, from.getDate())
              from.setDate(from.getDate() + 1)
         } else { // 日期超过下一年的第一天时
              lastDay.setDate(lastDay.getDate() - 1) // 只截取当前年份的日期,超出的部分不要
              toDate = formalDate(year, lastDay.getMonth() + 1, lastDay.getDate())
         }
         // 打印结果
         if (fromDate < toDate) document.write(year + '年第' + i + '周:' + fromDate + '至' + toDate + '
') i++ } } console.log(countWeekList(2018))
2)根据给定年份计算月时间段列表:
function countMonthList(year) {
     var monthList = {} // 保存月份时间段列表
     var beginDate = new Date(year, 0, 1) // 保存当前年份第一天的日期
     var endDate = new Date(year + 1, 0, 1) // 保存当前年份下一年第一天的日期
     // 根据endDate获取一个完整月的时间段
     function getLast(et) {
         // 减去一天即为上月最后一天;
         et = et - 1000 * 60 * 60 * 24
         // 计算上月第一天的日期
         var t = new Date(et)
         t.setDate(1)
         st = t
         return {
              st: formalDate1(st),
              et: formalDate1(et)
         };
      }
      var i = 12
      while (i > 0) {
          monthList[i] = getLast(endDate)
          // 更新endDate的值
          endDate = new Date(monthList[i].st)
          i--
      }
      return monthList
}
console.log(countMonthList(2019))
3)根据给定年份计算当前年份的周数:
function countWeekNum(year) {
    var total = (year % 4 || year % 100) ? 365 : 366 // 计算当前年份的总天数
    var first = (new Date(year, 0, 1, 0)).getDay() // 获取当前年份第一天是周几
    var last = (new Date(year, 11, 31, 23)).getDay() // 计算当前年份最后一天是周几
    first = first === 0 ? 7 : first // getDay()返回日期为0~7,需重置以便后续计算
    // 如果最后一天是周日,只需减去first的相关值
    // 默认从当前年份的第一个周一开始计算,例如2019年1月1日是周二,总天数total需减去6
    if (last === 0) {
         return parseInt((total - (8 - first)) / 7)
    } else { 
         // 如果最后一天不是周日,总天数total需同时减去first和last的相关值,并在结果中加1
         // 2019年最后一周为2019-12-30-2020-12-31
         return parseInt((total - (8 - first) - last) / 7 + 1)
    }
 }
 console.log(countWeekNum2(2019)) // 52
4)根据当前日期计算当前月份的时间段:
// 根据当前日期计算当前月份的时间段:2019-02-01~2019-02-28
function countDayNum() {
    var curDate = new Date() // 获取当前日期
    // 获取当前月份最后一天的日期,setDate(0):设置为上个月最后一天
    var last = new Date(curDate.setMonth(curDate.getMonth() + 1))
    var last = new Date(curDate.setDate(0))
    var dayNum = last.getDate() // 获取当前月份的总天数
    var first = new Date(last.getFullYear(), last.getMonth(), 1) // 获取当前月份第一天的日期
    return [parseToPhpDate(first), parseToPhpDate(last), dayNum]
}
console.log(countDayNum2())
5)根据当前日期计算当前周的时间段:
// 根据当前日期计算当前周的时间段
// new Date(2019,1,29) === new Date(2019,2,1)
function countDayNum2() {
    var curDate = new Date()
    var day = curDate.getDay() === 0 ? 7 : curDate.getDay()
    var mondayTime = new Date(curDate.setDate(curDate.getDate() - (day - 1)))
    var sundayTime = new Date(mondayTime.getFullYear(), mondayTime.getMonth(), mondayTime.getDate() + 6)
    return [parseToPhpDate(mondayTime), parseToPhpDate(sundayTime)]
}
console.log(countDayNum2()) // ["2019-03-18", "2019-03-24"]
6)根据当前日期获取当前是今年的第几周
// 根据当前日期获取当前是今年的第几周
function countCurweeknum() {
    var curDate = new Date()
    var first = new Date(curDate.getFullYear(), 0, 1) // 获取当前年份第一天的日期
    while (first.getDay() !== 1) { // 获取当前年份第一个周一的日期
         first.setDate(first.getDate() + 1)
    }
    // 获取当前日期上一个周日的日期
    var last = new Date(curDate.setDate(curDate.getDate() - (curDate.getDay() === 0 ? 7 : curDate.getDay())))
    // 利用时间戳计算天数
    var weekNum = Math.ceil((last.getTime() - first.getTime()) / (7 * 1000 * 24 * 60 * 60)) + 1
    return weekNum
}
console.log(countCurweeknum()) // 11 2019-03-21

你可能感兴趣的:(JS日期计算)