請看這些日期時間值的格式:在JavaScript中,如何將日期時間值從一種格式轉換爲另一種格式?
var from = "2012-01-13 T11:00:00";
var to = "13 Jan 2012 11:00am";
在上述例子中,如何寫一個JavaScript函數,其在「從」格式在「到」格式轉換的值的值,既日期時間值的文本obvioulsy。
var to = convertDateTime(from);
function convertDateTime(from)
{
// how to implement this?
}
非常感謝,
可能的重複[如何將字符串轉換爲日期時間與JavaScript格式規範?](http://stackoverflow.com/questions/476105/how-can-i-convert-string-to-datetime-with- format-specification-in-javascript) – 2012-02-29 12:44:19
希望這篇文章對你有所幫助。 http://stackoverflow.com/questions/758999/converting-dates-in-javascript – Learner 2012-02-29 12:47:12