• JavaScript 中 new Date() 时间使用


    JavaScript 中 new Date() 时间使用

    01)JavaScript获取当前时间加上10分钟

    遇到整点可以累加到下一时间

      // JavaScript获取当前时间加上10分钟
      function dateAdd(dStr, interval = 10) {
        let d = new Date(
            dStr.substring(0, 4),
            dStr.substring(5, 7) - 1,
            dStr.substring(8, 10),
            dStr.substring(11, 13),
            dStr.substring(14, 16),
            dStr.substring(17, 19)
        );
        d.setTime(d.getTime() + interval * 60 * 1000);
        //小于10前面补0
        let getMonth = (d.getMonth() + 1) < 10 ? "0" + (d.getMonth() + 1) : d.getMonth() + 1;
        let getDate = d.getDate() < 10 ? "0" + (d.getDate()) : d.getDate();
        let getHours = d.getHours() < 10 ? "0" + (d.getHours()) : d.getHours();
        let getMinutes = d.getMinutes() < 10 ? "0" + (d.getMinutes()) : d.getMinutes();
        return d.getFullYear() + "-" + getMonth + "-" + getDate + " " + getHours + ":" + getMinutes;
      }
      console.log(dateAdd('2022-02-20 08:00'))
    View Code

    02)JavaScript获取当前时间减去10分钟

    遇到整点可以累加到下一时间

      // JavaScript获取当前时间减去10分钟
      function dateDecrease(dStr,interval = 10) {
        let d = new Date(
            dStr.substring(0, 4),
            dStr.substring(5, 7) - 1,
            dStr.substring(8, 10),
            dStr.substring(11, 13),
            dStr.substring(14, 16),
            dStr.substring(17, 19)
        );
        d.setTime(d.getTime() - interval * 60 * 1000);
        //小于10前面补0
        let getMonth = (d.getMonth() + 1) < 10 ? "0" + (d.getMonth() + 1) : d.getMonth() + 1;
        let getDate = d.getDate() < 10 ? "0" + (d.getDate()) : d.getDate();
        let getHours = d.getHours() < 10 ? "0" + (d.getHours()) : d.getHours();
        let getMinutes = d.getMinutes() < 10 ? "0" + (d.getMinutes()) : d.getMinutes();
        return d.getFullYear() + "-" + getMonth + "-" + getDate + " " + getHours + ":" + getMinutes;
      }
      console.log(dateDecrease('2022-02-04 08:00'))
    View Code
  • 相关阅读:
    LeetCode题目:Gray Code
    LeetCode题目: Remove Duplicate Letters
    非阻塞socket中read、write返回值
    C连接MySql
    使用GDB调试程序
    C语言中使用库函数解析命令行参数
    把服务器当网盘玩 教你从云服务器下载自己的文件
    微信小程序 地图选点 获取用户选择的定位信息 wx.chooseLocation
    如何避免高不成低不就? 疫情当下Java学习路线分享
    微信小程序 获取手机号 JS
  • 原文地址:https://www.cnblogs.com/dafei4/p/15711180.html
Copyright © 2020-2023  润新知