js Date使用

2021-01-26 02:12

阅读:532

标签:使用   col   date()   color   strong   ons   class   时间   var   

一 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使用

标签:使用   col   date()   color   strong   ons   class   时间   var   

原文地址:https://www.cnblogs.com/silenceshining/p/13233308.html


评论


亲,登录后才可以留言!