这篇文章给大家介绍node.js中怎么获取月份,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。function gM(num) {  
这篇文章给大家介绍node.js中怎么获取月份,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
function gM(num) {
var new_month = 0;
var now_date = new Date();
var year = now_date.getFullYear();
var month = now_date.getMonth();
if ((month - num) < 0) {
for (var i = 1; i < 100; i++) { //此处为最大100年以内判断
var new_month = new_month + 12;
if (((new_month + month) - num) > 0) {
var new_year = year - Number(i);
var new_month = (new_month + month) - num;
break;
};
};
} else {
var new_year = year;
var new_month = month - num;
}
return (new_year.toString() + "-" + new_month.toString() + "-" + "1" + " 00:00:00");
}
关于node.js中怎么获取月份就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
--结束END--
本文标题: node.js中怎么获取月份
本文链接: https://lsjlt.com/news/74522.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
2022-06-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0