1、时间格式化(Date原型上添加)
Date.prototype.format = function() {
var s = '';
var mouth = (this.getMonth() + 1)>=10?(this.getMonth() + 1):('0'+(this.getMonth() + 1));
var day = this.getDate()>=10?this.getDate():('0'+this.getDate());
s += this.getFullYear() + '-'; // 获取年份。
s += mouth + "-"; // 获取月份。
s += day; // 获取日。
return (s); // 返回日期。
};
2、获取两个日期之间的日期
function getBetweenDate(begin, end) {
var dateList = [];
var ab = begin.split("-");
var ae = end.split("-");
var db = new Date();
db.setUTCFullYear(ab[0], ab[1] - 1, ab[2]);
var de = new Date();
de.setUTCFullYear(ae[0], ae[1] - 1, ae[2]);
var unixDb = db.getTime();
var unixDe = de.getTime();
for (var k = unixDb; k <= unixDe;) {
//console.log((new Date(parseInt(k))).format());
var timeItem = (new Date(parseInt(k))).format();
dateList.push(timeItem);
k = k + 24 * 60 * 60 * 1000;
}
return dateList;
}
3、计算7(n)天前
var date = new Date();
var endtime = formatDate(date);
date.setTime(date.getTime() - (7-1) * 24 * 60 * 60 * 1000);
var time = date.format();
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。