(参考文章)[https://www.cnblogs.com/lipcblog/p/6725347.html]
第一种方法,精确到毫秒
new Date().getTime()
第二种方法,精确到毫秒
var timestamp = (new Date()).valueOf();
第三种方法,精确到秒
var timestamp = Date.parse(new Date());
(参考文章)[https://www.cnblogs.com/lipcblog/p/6725347.html]
第一种方法,精确到毫秒
new Date().getTime()
第二种方法,精确到毫秒
var timestamp = (new Date()).valueOf();
第三种方法,精确到秒
var timestamp = Date.parse(new Date());
本文标题:JavaScript 获取时间戳
本文链接:https://www.haomeiwen.com/subject/jjxrnqtx.html
网友评论