gpt4 book ai didi

将 X 个月添加到日期的 JavaScript 函数

转载 作者:IT老高 更新时间:2023-10-28 13:15:26 25 4
gpt4 key购买 nike

我正在寻找将 X 个月添加到 JavaScript 日期的最简单、最简洁的方法。

我宁愿不 handle the rolling over of the year或必须write my own function .

有内置的东西可以做到这一点吗?

最佳答案

以下函数将月份添加到 JavaScript (source) 中的日期。它考虑了年结和不同的月份长度:

function addMonths(date, months) {
var d = date.getDate();
date.setMonth(date.getMonth() + +months);
if (date.getDate() != d) {
date.setDate(0);
}
return date;
}

// Add 12 months to 29 Feb 2016 -> 28 Feb 2017
console.log(addMonths(new Date(2016,1,29),12).toString());

// Subtract 1 month from 1 Jan 2017 -> 1 Dec 2016
console.log(addMonths(new Date(2017,0,1),-1).toString());

// Subtract 2 months from 31 Jan 2017 -> 30 Nov 2016
console.log(addMonths(new Date(2017,0,31),-2).toString());

// Add 2 months to 31 Dec 2016 -> 28 Feb 2017
console.log(addMonths(new Date(2016,11,31),2).toString());

上述解决方案涵盖了从天数大于目标月份的月份移动的边缘情况。例如。

  • 将十二个月添加到 2020 年 2 月 29 日(应为 2021 年 2 月 28 日)
  • 2020 年 8 月 31 日加一个月(应为 2020 年 9 月 30 日)

如果在应用 setMonth 时月份的日期发生了变化,那么我们知道由于月份长度的不同,我们已经溢出到下个月。在这种情况下,我们使用 setDate(0) 回到上个月的最后一天。

注意:此答案的此版本取代了早期版本(如下),该版本不能优雅地处理不同的月份长度。

var x = 12; //or whatever offset
var CurrentDate = new Date();
console.log("Current date:", CurrentDate);
CurrentDate.setMonth(CurrentDate.getMonth() + x);
console.log("Date after " + x + " months:", CurrentDate);

关于将 X 个月添加到日期的 JavaScript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2706125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com