JavaScript获取时间戳

有时前后端交互需要传递时间戳。获取时间戳的方法如下:

 

  console.log( Date.parse(new Date()) ) // 1574318285000 精确到秒
  console.log( (new Date()).valueOf() ) // 1574318285290 精确到毫秒
  console.log( new Date().getTime()) // 1574318285290 精确到毫秒

 

posted @ 2019-11-21 14:40  我的故事没编好  阅读(858)  评论(0编辑  收藏  举报