JavaScript中如何获得unix时间戳(js UnixTimeStamp) js不提供直接取unix timestamp的戳记,但是可以用一个简单的语句来实现: var timestamp=Math.round(new Date().getTime()/1000) ; 简单解释一下: new Date() 初始化一个日期时间对象 get.Time()取毫秒数,所以要取1000 Math.round是初始化一个数学方法,类似于php的ceil方法。