gpt4 book ai didi

javascript - 在给定日期上添加 1 天

转载 作者:行者123 更新时间:2023-11-28 20:05:39 25 4
gpt4 key购买 nike

请考虑以下场景:-

var d = new Date(); 

var month = d.getMonth()+1;
var day = d.getDate();

var output = d.getFullYear() + '-' +
((''+month).length<2 ? '0' : '') + month + '-' +
((''+day).length<2 ? '0' : '') + day;//alert(output);

var incept_dt = new Date();
var incept_dt = "2014-01-04";

我想将 incept_dt 增加 1 天。即我预期的 incep_dt 是:-

var incept_dt = "2014-01-05";

我尝试过以下方法:-

incept_dt = incept_dt.setDate(incept_dt.getDate() + 1);

但是出现以下错误:-

类型错误:incept_dt.getDate 不是函数incept_dt = incept_dt.setDate(incept_dt.getDate() + 1);

请提出任何建议。提前致谢。

最佳答案

因此,根据得到问题的确切答案,我执行以下操作:-

var incept_dt = new Date(); 
var incept_dt = new Date("2014-01-04");

incept_dt = incept_dt.setDate(incept_dt.getDate() + 1);
incept_dt = new Date(incept_dt);
var incept_month = (incept_dt.getMonth()+1);
var incept_day = incept_dt.getDate();
incept_dt = incept_dt.getFullYear() + '-' +
((''+incept_month).length<2 ? '0' : '') +incept_month + '-' +
((''+incept_day).length<2 ? '0' : '') + incept_day;

注意:- 对于时间的转换,我从 @Ravinder 的帖子中得到了概念。

关于javascript - 在给定日期上添加 1 天,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20878137/

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