码迷,mamicode.com
首页 > Web开发 > 详细

Js日期加减(天数),时间加减,日期运算,可直接调用

时间:2017-03-10 00:37:09      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:nbsp   修改   时间戳   int   logs   mon   img   images   return   

根据传入的日期做加减法计算,整数为加法,负数为减法,但是是天。

 num可传入: 1,2,3,-1,-2,-3等,默认是加一天;date可传入: 2017-01-01格式的,不传的话默认是当天日期。

 

function dateChange(num = 1,date = false) {
  if (!date) {
    date = new Date();//没有传入值时,默认是当前日期
    date = date.getFullYear() + ‘-‘ + (date.getMonth() + 1) + ‘-‘ + date.getDate();
  }
  date += " 00:00:00";//设置为当天凌晨12点
  date = Date.parse(new Date(date))/1000;//转换为时间戳
  date += (86400) * num;//修改后的时间戳
  var newDate = new Date(parseInt(date) * 1000);//转换为时间
  return newDate.getFullYear() + ‘-‘ + (newDate.getMonth() + 1) + ‘-‘ + newDate.getDate();
}

调用结果:

1、dateChange();

  结果:

    技术分享

2、dateChange(30);

  结果:

    技术分享

3、dateChange(-10);

  结果:

    技术分享

4、dateChange(3, ‘2018-02-27‘);

  结果:

    技术分享

5、dateChange(-2, ‘2016-3-1‘);

  结果:

    技术分享

 

Js日期加减(天数),时间加减,日期运算,可直接调用

标签:nbsp   修改   时间戳   int   logs   mon   img   images   return   

原文地址:http://www.cnblogs.com/jzzszyj/p/6528414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!