// 将时间戳转换成日期格式: function timestampToTime(timestamp) { var date = new Date(timestamp);//时间戳为10位需*1000,时间戳为13位的话不需乘1000 var Y = date.getFullYear() + '年'; var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '月'; var D = (dat…
UTC 时间转换 All In One http://www.timebie.com/cn/stduniversal.php UTC 时间 世界的每个地区都有自己的本地时间,在 Internet 及无线电通信时,时间的统一非常重要! 整个地球分为二十四时区,每个时区都有自己的本地时间. 在国际无线电通信中,为统一而普遍使用一个标准时间,称为通用协调时 (UTC, Universal Time Coordinated). UTC 与格林尼治平均时 (GMT, Greenwich Mean Time…