JS获取指定日期前后相隔几天的日期

JS获取指定日期前后相隔几天的日期。

/**
*date为开始日期,dayLength是相隔的天数,可以为负数;(可跨年)
*/
function getTargetDate(date,dayLength) {
    var tempDate = new Date(date);
    tempDate.setDate(tempDate.getDate() + dayLength);
    var year = tempDate.getFullYear();
    var month = tempDate.getMonth() + 1 < 10 ? "0" + (tempDate.getMonth() + 1) : tempDate.getMonth() + 1;
    var day = tempDate.getDate() < 10 ? "0" + tempDate.getDate() : tempDate.getDate();
    return year + "-" + month + "-" + day;
}

测试:getTargetDate(new Date(“2019-12-31”),1);
结果:2020-01-01

发布了37 篇原创文章 · 获赞 29 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_42755868/article/details/91888695