timestamp
条新动态, 点击查看
1、js获取毫秒时间戳(1970-01-01 00:00:00 至今的毫秒数 ): //获取当前毫秒时间戳:
new Date().getTime(); // 1477706847535
//获取当前毫秒时间戳:
new Date().valueOf(); ... 显示全部 »
new Date().getTime(); // 1477706847535
//获取当前毫秒时间戳:
new Date().valueOf(); ... 显示全部 »
1、js获取毫秒时间戳(1970-01-01 00:00:00 至今的毫秒数 ): //获取当前毫秒时间戳:
new Date().getTime(); // 1477706847535
//获取当前毫秒时间戳:
new Date().valueOf(); // 1477706847535
//获取指定时间的毫秒时间戳(只精确到秒,最后三位毫秒为"000"):
Date.parse("2020/10/10 10:10:10"); //1602295810000
//获取指定时间的毫秒时间戳(精确到毫秒,IE不支持):
Date.parse("2020/10/10 10:10:10.999"); //1602295810999
2、js获取unix时间戳(1970-01-01 00:00:00 至今的秒数 ): //获取当前unix时间戳:
Math.floor(new Date().getTime()/1000); // 1477707348
//获取当前unix时间戳:
Math.floor(new Date().valueOf()/1000); // 1477707348
//获取指定时间的unix时间戳:
Math.floor(Date.parse("2020/10/10 10:10:10")/1000); //1602295810
new Date().getTime(); // 1477706847535
//获取当前毫秒时间戳:
new Date().valueOf(); // 1477706847535
//获取指定时间的毫秒时间戳(只精确到秒,最后三位毫秒为"000"):
Date.parse("2020/10/10 10:10:10"); //1602295810000
//获取指定时间的毫秒时间戳(精确到毫秒,IE不支持):
Date.parse("2020/10/10 10:10:10.999"); //1602295810999
2、js获取unix时间戳(1970-01-01 00:00:00 至今的秒数 ): //获取当前unix时间戳:
Math.floor(new Date().getTime()/1000); // 1477707348
//获取当前unix时间戳:
Math.floor(new Date().valueOf()/1000); // 1477707348
//获取指定时间的unix时间戳:
Math.floor(Date.parse("2020/10/10 10:10:10")/1000); //1602295810