2012-01-08 5 views

回答

2

使用Date構造函數:

var date = new Date(1325982833403*1000); 

這個數字是Unix時間戳,谷歌有關的更多信息,並轉換技術

+0

你確定? '新日期(1325982833403 * 1000).toString()'評估爲'「9月21日星期三43988 08:50:03 GMT-0400(東部夏令時)」' – benastan 2012-01-09 17:10:23

+0

這是什麼問題? – kaz 2012-01-09 23:26:29

+0

未來41,976年? – benastan 2012-01-10 01:27:12

1

這是一個UNIX時間戳;一個非常有用的代表性的時刻。

Unix time, or POSIX time, is a system for describing instants in time, defined as 
the number of seconds elapsed since midnight Coordinated Universal Time (UTC) of 
Thursday, January 1, 1970 ... 

http://en.wikipedia.org/wiki/Unix_time

在實踐中,這個特別庫(http://www.datejs.com/),用途:

<script src="http://datejs.googlecode.com/files/date.js" type="text/javascript"></script> 
<script type="text/javacript"> 
    var mydate = Date(1325982833403); 
</script> 
相關問題