答案 0 :(得分:1)
试试这个
var date = new Date(parseInt(yourDate.substr(6)));
格式化您的日期使用以下代码
var parsedDate= new Date(date);
var formattedDate =parsedDate.getDate()+"-"+parsedDate.getMonth()+"-"+parsedDate..getFullYear();
答案 1 :(得分:0)
你可以试试这个,假设你可以操纵你从数据库中得到的'日期':
d = yourdate();
new_d = d.toUTCString();
还有.toLocaleTimeString() (for times i.e., 11:11:12 am) and .toDateTimeString() (for days i.e., 11/11/2011)