gpt4 book ai didi

javascript - 如何给日期添加天数?

转载 作者:行者123 更新时间:2023-11-30 10:22:24 36 4
gpt4 key购买 nike

<分区>

我想在 Javascript 中的日期字符串中添加 5 天:

var olddate = '23.12.2013';
olddate = olddate.split('.');
var tmpDate = new Date(olddate[2],olddate[1],olddate[0]);
tmpDate.setDate(tmpDate.getDate() + 5);

var date = (tmpDate.getDate().toString().length < 2) ? '0' +
tmpDate.getDate() : tmpDate.getDate();

var month = (tmpDate.getMonth().toString().length < 2) ? '0' +
tmpDate.getMonth() : tmpDate.getMonth();

console.log( date + '.' + month + '.'+ tmpDate.getFullYear());

此代码显示 27.00.2014 而不是我期望的:27.12.2013。我想将 String 日期增加 5 天。为什么会延迟一个月?

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