0

我在我的 javascript 中接收 json 数据作为包含某些事件的日期和时间的字符串列表。

我构造了一个数组并将它们存储在数组中。

但是存储格式为 dd/mm/yyyy hh:mm:ss。我想知道是否有一种方法可以从数组中提取此字符串的日期部分。

// run a loop to parse thru all elements in the array. //
t = (Service_date_from[count]); // 't' is what contains the date time once extracted from the array with a counter variable called `count`

javascript中是否有任何类型的日期格式化功能?

4

1 回答 1

3

如果它总是这样格式化,你可以简单地使用substr

var idx = t.indexOf(" ");
var timeStr = t.substr(idx + 1);
于 2013-02-27T19:23:04.353 回答