我是否错误地实现了 setUTCMilliseconds?我输入的任何值的日期都不正确。这只是错误值的一个示例。我所有的测试数据在 JS 中解析到 5 月 24 日(从现在开始的未来),但在 C# 或使用快速在线转换工具中,我的 UTS MS 是正确的。
有什么想法吗?
function parseDate(epoch) {
var d = new Date();
//tried this too, but it shows me the actual epoch 1970 date instead
//var d = new Date(0);
//EDIT: this should be seconds in combination with Date(0)
d.setUTCMilliseconds(parseInt(epoch));
return d.toString();
}
// 1336423503 -> Should be Mon May 07 2012 13:45:03 GMT-7
// javascript says
Thu May 24 2012 05:03:21 GMT-0700 (Pacific Daylight Time)