有时前后端交互需要传递时间戳。获取时间戳的方法如下: 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 标签 时间戳 date 毫秒