以下便是干货
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位
其它文章来源:https://www.toymoban.com/news/detail-510976.html
在开发的中需要精确到秒的时候,推荐使用 第1种方法,也需要除以1000才行,如果是需要时间戳毫秒的推荐 +new Date() 和 new Date().getTime();文章来源地址https://www.toymoban.com/news/detail-510976.html
到了这里,关于js/javascript获取时间戳的5种方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!