=..._var strdate = date.getdate();">
当前位置:   article > 正文

js获取当前日期,并计算几天后日期_var strdate = date.getdate();

var strdate = date.getdate();
  1. function getNowFormatDate() {
  2. var date = new Date();
  3. var seperator1 = "-";
  4. var seperator2 = ":";
  5. var month = date.getMonth() + 1;
  6. var strDate = date.getDate();
  7. if (month >= 1 && month <= 9) {
  8. month = "0" + month;
  9. }
  10. if (strDate >= 0 && strDate <= 9) {
  11. strDate = "0" + strDate;
  12. }
  13. var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
  14. + " " + date.getHours() + seperator2 + date.getMinutes()
  15. + seperator2 + date.getSeconds();
  16. return currentdate;
  17. }

计算几天后的时间

  1. var date = new Date();
  2. //这里的60就是你要加的天数,减也可以。年、月会相应加上去,值得注意的是date.getMonth()得到的月份比实际月份小1,所以实际月份是(date.getMonth()+1)
  3. date.setDate(date.getDate() + 60);
  4. console.log(date.getFullYear() +"-"+ (date.getMonth()+1) +"-"+ date.getDate());

 当使用setDate()之后,date对象就发生了改变,所以之后getDate()就能获取到指定的日期

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/313719
推荐阅读
相关标签
  

闽ICP备14008679号