js 获取昨天,今天和明天的年月日格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 获取昨天,今天和明天的年月日格式相关的知识,希望对你有一定的参考价值。
1 //昨天: 2 const yestoday = new Date().getTime() - 24*60*60*1000; 3 4 //今天: 5 const today = new Date(); 6 7 //明天: 8 const tomorrow = new Date().getTime() + 24*60*60*1000; 9 10 //最终的格式 如:2017-09-21
以上是关于js 获取昨天,今天和明天的年月日格式的主要内容,如果未能解决你的问题,请参考以下文章