gpt4 book ai didi

javascript - 将字符串转换为日期并添加 5 天

转载 作者:行者123 更新时间:2023-12-02 15:22:37 26 4
gpt4 key购买 nike

我有一个像这样的字符串

"2014-10-29"

现在我需要将其转换为日期并添加 5 天。

我有这段代码,可以在当前日期的基础上添加 5 天,但是如何将该字符串转换为日期并向其添加 5 天?

var newDate = new Date();
newDate.setDate(newDate.getDate() + 5);

var yyyy = newDate.getFullYear().toString();
var mm = (newDate.getMonth() + 1).toString();
var dd = newDate.getDate().toString();

var mmChars = mm.split('');
var ddChars = dd.split('');

var newClosingDate = yyyy + '-' + (mmChars[1] ? mm : "0" + mmChars[0]) + '-' + (ddChars[1] ? dd : "0" + ddChars[0]);

最佳答案

将字符串传递给 Date 构造函数:

var newDate = new Date("2014-10-29");
newDate.setDate(newDate.getDate() + 5);

var yyyy = newDate.getFullYear().toString();
var mm = (newDate.getMonth() + 1).toString();
var dd = newDate.getDate().toString();

var mmChars = mm.split('');
var ddChars = dd.split('');

var newClosingDate = yyyy + '-' + (mmChars[1] ? mm : "0" + mmChars[0]) + '-' + (ddChars[1] ? dd : "0" + ddChars[0]);

console.log(newDate);

关于javascript - 将字符串转换为日期并添加 5 天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33921403/

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