js Date使用
Posted 一首简单的歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js Date使用相关的知识,希望对你有一定的参考价值。
一 Date中获取月份的范围是0-11,不是1-12
所以在使用时需要注意,如果需要通过Date拿到正确的月份,可以拿到month后进行+1操作。
var date=new Date(); console.log(date); console.log("当前月份:",date.getMonth()); console.log("当前月份:",date.getMonth()+1);
打印结果:
Fri Jul 03 2020 23:54:29 GMT+0800 (中国标准时间) VM62:3 当前月份: 6 VM62:4 当前月份: 7
以上是关于js Date使用的主要内容,如果未能解决你的问题,请参考以下文章
带有神秘附加字符的 Javascript Date getTime() 代码片段