在客户端将字符串更改为datetime字段

时间:2013-06-17 04:42:46

标签: jquery client-side

我有一个字符串,如“Thu May 30 2013 00:00:00 GMT + 0530(印度标准时间)”,我需要将其更改为此格式“06/10/2013 03:16:55 PM。

1 个答案:

答案 0 :(得分: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"