const date = Date.prototype
// 为日期 d 加上 t 天
date.getNextDay = function(d,t){
console.log(d,t)//格式为---2019-02-13 3
d = new Date(d);
console.log(d)//格式为---Wed Feb 13 2019 08:00:00 GMT+0800 (中国标准时间)
d = +d + (1000606024)t;
console.log(d)//格式为--时间戳1550275200000
d = new Date(d);
console.log(d)//格式为---Sat Feb 16 2019 08:00:00 GMT+0800 (中国标准时间)
return new Date(d).format("yyyy-MM-dd") //格式为"2019-02-16 00:00:00"
}
// 为日期 d 减去 t 天
date.getLostDay = function(d,t){
console.log(d,t)//格式为---2019-02-13 3
d = new Date(d);
console.log(d)//格式为---Wed Feb 13 2019 08:00:00 GMT+0800 (中国标准时间)
d = +d - (1000606024)t;
console.log(d)//格式为--时间戳1550275200000
d = new Date(d);
console.log(d)//格式为---Sat Feb 16 2019 08:00:00 GMT+0800 (中国标准时间)
return new Date(d).format("yyyy-MM-dd") //格式为"2019-02-16 00:00:00"
}
网友评论