赞
踩
第一种:获取n天前后的日期
curDate: Date;
this.curDate = new Date();
//n天前的日期
this.curDate.setDate(this.curDate.getDate()-n);
// n天后的日期
this.curDate.setDate(this.curDate.getDate()+n);
第二种:获取n天前后的日期转换为时间戳
curDate: any;
this.curDate = new Date();
//n天前的日期时间戳
this.curDate.setDate(this.curDate.getDate()-n);
this.curDate = moment(this.curDate).unix();
//n天后的日期时间戳
this.curDate.setDate(this.curDate.getDate()+n);
this.curDate = moment(this.curDate).unix();
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。