当前位置:   article > 正文

使用day.js库的方法获取上周、本周、下周、上月、本月、下月、本年,的时间范围_dayjs 上周

dayjs 上周
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <script src="https://cdn.jsdelivr.net/npm/dayjs@1.10.6/dayjs.min.js"></script>
</head>
<body>
  <script>
  const weekStart = 1; // 1表示周一是一周的开始,0表示周日是一周的开始

  // 获取上周的起始日期和结束日期
  function getLastWeek() {
    const startOfWeek = dayjs().subtract(1, 'week').day(weekStart).format('YYYY-MM-DD') + ' 00:00:00';
    const endOfWeek = dayjs().subtract(1, 'week').day(weekStart + 6).format('YYYY-MM-DD') + ' 23:59:59';
    return { startOfWeek, endOfWeek };
  }

  // 获取本周的起始日期和结束日期
  function getCurrentWeek() {
    const startOfWeek = dayjs().day(weekStart).format('YYYY-MM-DD') + ' 00:00:00';
    const endOfWeek = dayjs().day(weekStart + 6).format('YYYY-MM-DD') + ' 23:59:59';
    return { startOfWeek, endOfWeek };
  }

  // 获取下周的起始日期和结束日期
  function getNextWeek() {
    const startOfWeek = dayjs().add(1, 'week').day(weekStart).format('YYYY-MM-DD') + ' 00:00:00';
    const endOfWeek = dayjs().add(1, 'week').day(weekStart + 6).format('YYYY-MM-DD') + ' 23:59:59';
    return { startOfWeek, endOfWeek };
  }

  // 获取上个月的起始日期和结束日期
  function getLastMonth() {
    const startOfMonth = dayjs().subtract(1, 'month').startOf('month').format('YYYY-MM-DD') + ' 00:00:00';
    const endOfMonth = dayjs().subtract(1, 'month').endOf('month').format('YYYY-MM-DD') + ' 23:59:59';
    return { startOfMonth, endOfMonth };
  }

  // 获取本月的起始日期和结束日期
  function getCurrentMonth() {
    const startOfMonth = dayjs().startOf('month').format('YYYY-MM-DD') + ' 00:00:00';
    const endOfMonth = dayjs().endOf('month').format('YYYY-MM-DD') + ' 23:59:59';
    return { startOfMonth, endOfMonth };
  }

  // 获取下个月的起始日期和结束日期
  function getNextMonth() {
    const startOfMonth = dayjs().add(1, 'month').startOf('month').format('YYYY-MM-DD') + ' 00:00:00';
    const endOfMonth = dayjs().add(1, 'month').endOf('month').format('YYYY-MM-DD') + ' 23:59:59';
    return { startOfMonth, endOfMonth };
  }

  // 获取本年的起始日期和结束日期
  function getCurrentYear() {
    const startOfYear = dayjs().startOf('year').format('YYYY-MM-DD') + ' 00:00:00';
    const endOfYear = dayjs().endOf('year').format('YYYY-MM-DD') + ' 23:59:59';
    return { startOfYear, endOfYear };
  }

  // 示例
  console.log(getLastWeek());
  console.log(getCurrentWeek());
  console.log(getNextWeek());
  console.log(getLastMonth());
  console.log(getCurrentMonth());
  console.log(getNextMonth());
  console.log(getCurrentYear());
  </script>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/292392
推荐阅读
相关标签
  

闽ICP备14008679号