如何从Javascript中的unix时间戳获取人类可读日期? [英] How do I get a human readable date from a unix timestamp in Javascript?

查看:120
本文介绍了如何从Javascript中的unix时间戳获取人类可读日期?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的javascript中,我有一个unix时间戳(在本例中为1318305600000),我需要通过Javascript将其转换为人类可读日期。

In my javascript, I have a unix timestamp (in this instance `1318305600000") and I need to convert that into a human readable date via Javascript.

如何我要这样做吗?

推荐答案

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

这篇关于如何从Javascript中的unix时间戳获取人类可读日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆