js获取特定时间前或后得时间,如7天前

  1. function getData(days){
  2.     var date1 = new Date(),
  3.     time1=date1.getFullYear()+"-"+(date1.getMonth()+1)+"-"+date1.getDate();//time1表示当前时间
  4.     var date2 = new Date(date1);
  5.     date2.setDate(date1.getDate()+days);
  6.     var time2 = date2.getFullYear()+"-"+(date2.getMonth()+1)+"-"+date2.getDate();
  7.     return time2
  8. }
  9. console.log('7七天后:',getData(7))
  10. console.log('7七天前:',getData(-7))

购物网站中经常会用到限时购买,抢购等功能,在这些功能中又会涉及到获取当前时间之后固定天数时间如一周前后得时间点,那么js代码要如何实现获取一周后得具体时间呢?

代码如下:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.duanlonglong.com/qdjy/183.html