YoungSx
7/10/2017 - 10:42 AM

JS取时间戳

JS取时间戳

var now = +new Date()
// + 的意思是整数型 也就是取毫秒 也就是时间戳
var now = new Date().getTime()