【咸鱼干的日常|日期加1天】直接加24 * 60 * 3600只能用在new Date()时
let next = new Date((new Date() + 24*60*3600));
自定义日期加一天
let custom = new Date('2022-6-1');
let next = new Date(custom .setDate(custom .getDate() + 1))
// Thu Jun 02 2022 00:00:00 GMT+0800 (中国标准时间) {}
// next.tolocalString()
// 2022/6/2 00:00:00
推荐阅读
- 咸鱼干的日常|计算时间差
- 咸鱼干的日常|生成随机密码/验证码
- 记录|【记录】限定input输入框只能输入/输出数字
- WordPress 4.5.2(未捕获的ReferenceError:未定义JQuery [关闭])
- mysql|nodejs中使用mySql数据库
- 前端|vue锁屏功能
- vue|vue中使用videojs
- js|vue实现顶部导航栏
- vue|仓管系统设计