有关示例,请参阅http://worik.org/DateBug.html。
document.write( Date(1234).toLocaleString()+"<p/>");
输出 2014年8月12日星期二09:43:22 GMT + 1200(NZST)
(正如我所写)但是
var D1 = new Date(1234);
document.write(D1.toLocaleString()+"<p/>");
输出
1/01/1970 12:00:01 pm
我并不太关心格式,虽然这是一个难题,但日期不同。
Worik