Js日期加减(天数),时间加减,日期运算
Posted qaakd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Js日期加减(天数),时间加减,日期运算相关的知识,希望对你有一定的参考价值。
根据传入的日期做加减法计算,整数为加法,负数为减法,但是是天。
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);//当前日期加30天
3、dateChange(-10); //当前日期加-10天
4、dateChange(3, '2018-02-27'); 指定日期加3天
5、dateChange(-2, '2016-3-1'); 指定日期加-2天
以上是关于Js日期加减(天数),时间加减,日期运算的主要内容,如果未能解决你的问题,请参考以下文章