2014-01-08 136 views

回答

3

首先,你可以使用標準的Date.parse函數從字符串轉換爲日期:

> new Date(Date.parse("01-Jan-09")); 
Thu Jan 01 2009 00:00:00 GMT-0800 (PST) 

現在,你需要序列化的日期,你可以這樣做:

function serialize(date) { 
    return '' + date.getFullYear() + '-' + (date.getMonth() +1) + '-' + date.getDate(); 
} 
+0

也許這只是我,但'新日期(Date.parse(「01-Jan-09」));'不適合我。 –

+0

'Date.parse()'在IE <9中工作嗎? – nnnnnn

+0

我不知道...我在Chrome和Mac上。 IE <9在我的世界中不存在。 :) –

相關問題