JavaScript获取时间戳

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

  console.log( Date.parse(new Date()) ) // 1574318285000 精确到秒
  console.log( (new Date()).valueOf() ) // 1574318285290 精确到毫秒
  console.log( new Date().getTime()) // 1574318285290 精确到毫秒
原文地址:https://www.cnblogs.com/xguoz/p/11905531.html