gpt4 book ai didi

javascript - 如何根据计数设置月份值

转载 作者:行者123 更新时间:2023-11-30 11:35:57 25 4
gpt4 key购买 nike

如何在 javascript 中获取正确的月份。我不想为此使用任何插件。

var date = new Date();
var month = date.getMonth();
// value is 06 current month;

var month = date.getMonth() + 15;
// now value is 21

在这里,如果 getMonth() 计数超过 12 意味着我如何才能获得正确的月份。如果超过 12 意味着我也需要增加年份。

例如,

// assume current month December
var month = date.getMonth()+3; // value is 14

我想将月份显示为“03”(三月)。请帮助我,我该怎么做

最佳答案

%12 做。它将用 12 减去月份。剩余的将显示在

注意:记住月份值从 0 开始 0=January

var date = new Date();
var month = date.getMonth();
console.log('default month value ='+month)
month = (date.getMonth() + 15) % 12;
console.log(month)

关于javascript - 如何根据计数设置月份值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44412172/

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