0

我有一个类似“Thu May 30 2013 00:00:00 GMT+0530 (India Standard Time)”的字符串,我需要将其更改为这种格式“06/10/2013 03:16:55 PM。

4

1 回答 1

0

您可以使用日期格式化插件,例如http://www.datejs.com/。(看起来你必须自己去掉括号中的时区名称。)

使用该库,您可以执行以下操作:

var input = "Thu May 30 2013 00:00:00 GMT+0530 (India Standard Time)";
input = input.replace(/\(.+\)/,''); // Get rid of the stuff in parentheses
Date.parse(input).toString("mm/dd/yyyy hh:mm:ss tt"); //"05/30/2013 02:42:00 AM"
于 2013-06-17T04:59:29.690 回答