本文介绍了向 JavaScript 日期添加天数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用 JavaScript 为当前 Date
添加天数.JavaScript 是否有像 .Net 的 AddDay
这样的内置函数?
How to add days to current Date
using JavaScript. Does JavaScript have a built in function like .Net's AddDay
?
推荐答案
您可以创建一个:-
Date.prototype.addDays = function(days) {
var date = new Date(this.valueOf());
date.setDate(date.getDate() + days);
return date;
}
var date = new Date();
console.log(date.addDays(5));
这会在必要时自动增加月份.例如:
This takes care of automatically incrementing the month if necessary. For example:
8/31 + 1 天将变成 9/1.
8/31 + 1 day will become 9/1.
直接使用 setDate
的问题在于它是一个 mutator,最好避免这种事情.ECMA 认为将 Date
视为可变类而不是不可变结构是合适的.
The problem with using setDate
directly is that it's a mutator and that sort of thing is best avoided. ECMA saw fit to treat Date
as a mutable class rather than an immutable structure.
这篇关于向 JavaScript 日期添加天数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!