首页 前端知识 JavaScript 获取时间戳的5种方法

JavaScript 获取时间戳的5种方法

2024-06-04 10:06:33 前端知识 前端哥 910 725 我要收藏

文章目录

  • 1.Date.parse(new Date())
  • 2.Math.round(new Date())
  • 3.(new Date()).valueOf()
  • 4.new Date().getTime()
  • 5.+new Date()

1.Date.parse(new Date())

const timestamp = Date.parse(new Date());
console.log(timestamp);
//输出 1591669256000   13位

2.Math.round(new Date())

const timestamp = Math.round(new Date());
console.log(timestamp);  
//输出 1591669961203   13位

3.(new Date()).valueOf()

const timestamp = (new Date()).valueOf();
console.log(timestamp);
//输出 1591670037603   13位

4.new Date().getTime()

const timestamp = new Date().getTime();
console.log(timestamp);
//输出 1591670068833   13位

5.+new Date()

const timestamp = +new Date();
console.log(timestamp);
//输出 1591670099066   13位

在开发的中需要精确到秒的时候,推荐使用 第1种方法,也需要除以1000才行,如果是需要时间戳毫秒的推荐 +new Date() 和 new Date().getTime();

转载请注明出处或者链接地址:https://www.qianduange.cn//article/10685.html
标签
评论
发布的文章

js-jquery页面跳转集合

2024-06-08 22:06:13

echarts柱状图数据过多

2024-06-08 22:06:31

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!