美文网首页
2021-04-06 js日期加减

2021-04-06 js日期加减

作者: ClarkM | 来源:发表于2021-04-06 11:09 被阅读0次

    const date = Date.prototype
    // 为日期 d 加上 t 天
    date.getNextDay = function(d,t){
    console.log(d,t)//格式为---2019-02-13 3
    d = new Date(d);
    console.log(d)//格式为---Wed Feb 13 2019 08:00:00 GMT+0800 (中国标准时间)
    d = +d + (1000606024)t;
    console.log(d)//格式为--时间戳1550275200000
    d = new Date(d);
    console.log(d)//格式为---Sat Feb 16 2019 08:00:00 GMT+0800 (中国标准时间)
    return new Date(d).format("yyyy-MM-dd") //格式为"2019-02-16 00:00:00"
    }
    // 为日期 d 减去 t 天
    date.getLostDay = function(d,t){
    console.log(d,t)//格式为---2019-02-13 3
    d = new Date(d);
    console.log(d)//格式为---Wed Feb 13 2019 08:00:00 GMT+0800 (中国标准时间)
    d = +d - (1000606024)t;
    console.log(d)//格式为--时间戳1550275200000
    d = new Date(d);
    console.log(d)//格式为---Sat Feb 16 2019 08:00:00 GMT+0800 (中国标准时间)
    return new Date(d).format("yyyy-MM-dd") //格式为"2019-02-16 00:00:00"
    }

    相关文章

      网友评论

          本文标题:2021-04-06 js日期加减

          本文链接:https://www.haomeiwen.com/subject/zssskltx.html