2011-10-19 26 views
5

मेरी जावास्क्रिप्ट में, मैं एक यूनिक्स टाइमस्टैम्प (इस उदाहरण `1318305600000" में) है और मुझे लगता है कि परिवर्तित करने के लिए जावास्क्रिप्ट के जरिए एक मानव पठनीय तारीख में की जरूरत है।जावास्क्रिप्ट में यूनिक्स टाइमस्टैम्प से मुझे मानव पठनीय तिथि कैसे प्राप्त हो सकती है?

कैसे मैं यह कर के बारे में जाते हैं?

उत्तर

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' nsole यह '1318910400000.00" दिखाता है। – KallDrexx

+0

यह एक फ़्लोटिंग पॉइंट नंबर की तरह दिखता है। एक पूर्णांक में इसे छोटा करने के लिए 'parseInt (x, 10)' आज़माएं। – SLaks

संबंधित मुद्दे