2011-10-19 74 views

回答

7
var date = new Date(unix_timestamp*1000); 
var hours = date.getHours(); 
var minutes = date.getMinutes(); 
var seconds = date.getSeconds(); 
// will display time in 21:00:00 format 
var formattedTime = hours + ':' + minutes + ':' + seconds; 

有關完整的參考

getDate() Returns the day of the month (from 1-31) 
getDay() Returns the day of the week (from 0-6) 
getFullYear() Returns the year (four digits) 
getHours() Returns the hour (from 0-23) 
getMilliseconds() Returns the milliseconds (from 0-999) 
getMinutes() Returns the minutes (from 0-59) 
getMonth() Returns the month (from 0-11) 
getSeconds() Returns the seconds (from 0-59) 
getTime() Returns the number of milliseconds since midnight Jan 1, 1970 
getTimezoneOffset() Returns the time difference between GMT and local time, in minutes 
getUTCDate() Returns the day of the month, according to universal time (from 1-31) 
getUTCDay() Returns the day of the week, according to universal time (from 0-6) 
getUTCFullYear() Returns the year, according to universal time (four digits) 
getUTCHours() Returns the hour, according to universal time (from 0-23) 
getUTCMilliseconds() Returns the milliseconds, according to universal time (from 0-999) 
getUTCMinutes() Returns the minutes, according to universal time (from 0-59) 
getUTCMonth() Returns the month, according to universal time (from 0-11) 
getUTCSeconds() Returns the seconds, according to universal time (from 0-59) 
getYear() Deprecated. Use the getFullYear() method instead 
+0

謝謝你。將其標記爲答案,因爲它不僅僅提供默認日期格式,而且還提供了很好的參考 – KallDrexx

9
alert(new Date(1318305600000)) 
+0

好這樣的作品,但是當我在一個變量這樣做(比如'新的日期(X)')我收到「無效的日期」。當我輸出給鉻公司的'x'它顯示「1318910400000.00」。 – KallDrexx

+0

這看起來像一個浮點數。嘗試'parseInt(x,10)'將其截斷爲一個整數。 – SLaks

相關問題