1.获取时间戳精确到秒,13位
const timestamp = Date.parse(new Date());
console.log(timestamp);
//输出 1591669256000 13位
2.获取时间戳精确到毫秒,13位
const timestamp = Math.round(new Date());
console.log(timestamp);
//输出 1591669961203 13位
3.获取时间戳精确到毫秒,13位
const timestamp = (new Date()).valueOf();
console.log(timestamp);
//输出 1591670037603 13位
4.获取时间戳精确到毫秒,13位
const timestamp = new Date().getTime();
console.log(timestamp);
//输出 1591670068833 13位
5.获取时间戳精确到毫秒,13位
const timestamp = +new Date();
console.log(timestamp);
//输出 1591670099066 13位
时间戳是指格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数。
+new Date()
new Date().getTime()
Date.now()
时间戳主要用于清理缓存,大多数用于版本更新;
今天的文章js/javascript获取时间戳的5种方法「建议收藏」分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/80758.html