javascript计算昨天yesterday明天tomorrow后天after tomorrow的方法
Author:zhoulujun Date:
javascript计算昨天yesterday明天tomorrow后天after tomorrow的方法呢
let now = new Date('2016-12-1');
let d=now.setDate(now.getDate()+2);
console.log(now);
let m= now.setMonth(now.getMonth()+2) ;
console.log(now);
或者采用moment.js 插件。可以自行查看api,这个js做用日期运算还是蛮好的。
var today=new Date(); var dayTimes=24*60*60*1000; var tomorrow= new Date(today.getTime()+dayTimes); var afterTomorrow=new Date(today.getTime()+dayTimes*2); function dayStr(day) { var m=day.getMonth()+1; return "("+(m<10?'0'+m:m)+"月"+day.getDate()+"日)" }
转载本站文章《javascript计算昨天yesterday明天tomorrow后天after tomorrow的方法》,
请注明出处:https://www.zhoulujun.cn/html/webfront/ECMAScript/js/2017_1228_8069.html
延伸阅读:
- Javascript模块化编程
- ECMAScript进化史(1):话说Web脚本语言王者JavaScript的加冕历史
- JSHint 配置详解与使用说明
- 从λ演算到函数式编程聊闭包(1):闭包概念在Java/PHP/JS中形式
- 浏览器把JSON导出转为excel下载到本地
- 从λ演算到函数式编程聊闭包(2):彻底理解JavaScript闭包规则
- ECMAScript进化史(3):ES5/ES6/ES7/ES8/ES9/ES10新特性大盘点
- JSHint 配置参数浅析
- min项目可以放弃jquery了:常用jQuery函数的原生JS写法
- Javascript异步回调:从手搓promise到function */yield与async/await
- 手搓一个reduce就能门清:initialValue,previousValue,currentValue
- js算法题:两个大数相加最直观简洁的算法实现
- 移动端倒计时不准:手机锁屏熄屏/APP后台运行/屏幕卡顿