当前位置:   article > 正文

js获取当前时间以及获取过去、未来多少天日期_前端怎么判断时间过去多久

前端怎么判断时间过去多久

获取当前时间

var now = new Date();
var beginDate = now.getFullYear() + "-" + (now.getMonth() + 1) + "-" + now.getDate();
//(now.getMonth() + 1) 因为now.getMonth()获取的月份是0-11 0是一月、11是十二月所以需要+1
  • 1
  • 2
  • 3

过去、未来隔多少天获取日期

  var date1 = new Date();//当前时间
  var date2 = new Date(date1);
  date2.setDate(date1.getDate() + -7);//关键点在这儿 date1.getDate() + -7 的含义是以当前时间开始过去的7天 如果是30天前把7改成30就行 如果是获取未来多少天的日期 要把-7改成 +N 天
  let beginDate = date2.getFullYear() + "-" + (date2.getMonth() + 1) + "-" + date2.getDate();
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/313737
推荐阅读
相关标签
  

闽ICP备14008679号