js-基础知识-02-当前年月日时分秒

2020-12-18 15:26:27 浏览数 (1)

系统:Windows 10 VsCode:1.51 Node.js:10.15.3

  • 这个系列讲讲javascript的一些基础知识
  • 今天讲讲如何获取当前的年月日时分秒

Part 1:场景说明

  1. 输出当前时间对应的年月日时分秒

结果如下

Part 2: 代码

代码语言:javascript复制
var today = new Date();
console.log("完整时间:", today)

var year = today.getFullYear();
console.log("年:", year);

var month = today.getMonth();
console.log("月:", month);

var day = today.getDate();
console.log("日:", day);

var hour = today.getHours();
console.log("时:", hour);

var minute = today.getMinutes();
console.log("分:", minute);

var second = today.getSeconds();
console.log("秒:", second);

代码截图

Part 3:部分代码说明

  1. 从结果来看,输出的时间有点奇怪,完整时间:2020-12-15T13:58:59.132Z,查了一下,输出的时间是格林尼治所在地的标准时间,与我们相差8个小时,如何直接输出当前时区的标准时间,欢迎来答
  2. 返回的月是11getMonth()返回值是0(1月)-11(12月),实际月需要 1
  3. 返回的时是21,与当前的时区的时是一致的,getHours()返回值是0(晚上12点)-23(晚上11点)

Part 4:人工定义时间

方法1

  1. var today = new Date('2020-12-15T23:58:59')将时间信息作为字符串传入

方法2

  1. var today = new Date(year_1, month_1, day_1, hours_1, minutes_1, seconds_1, milliseconds_1);分别传入年月日时分秒
    • 时,传入的数字 1为实际输出的月
    • 传入的时间为当前时区时间,被自动转为格林尼治所在地的标准时间,应该是需要哪里进行设置

本文为原创作品,欢迎分享朋友圈

长按图片识别二维码,关注本公众号 Python 优雅 帅气

0 人点赞