如何在javascript中修剪日期+时间字符串的时间部分

时间:2013-02-27 19:20:47

标签: javascript datetime

我在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中是否有任何日期格式化功能?

1 个答案:

答案 0 :(得分:3)

如果它始终以这种方式格式化,您只需使用substr

即可
var idx = t.indexOf(" ");
var timeStr = t.substr(idx + 1);