如何在JavaScript中将这种类型的日期文字解析为Date对象?
var jsonDateFromServer="/Date(1333656000000+0400)/";
请注意,Date.parse方法不能在这里工作
答案 0 :(得分:1)
这是一个带有时区偏移的时间戳。快速而肮脏的解决方案:
var jsonDateFromServer="/Date(1333656000000+0400)/";
// Remove the markup
var timestamp = jsonDateFromServer.replace("/Date(", "").replace(")/", "");
// Parse the base timestamp first, convert it to a notation where we can add the offset easily, parse the result
var date = new Date(new Date(parseInt(timestamp.slice(0,-5))).toUTCString() + timestamp.slice(-5));
答案 1 :(得分:0)
您可以创建一个函数并尝试这样:
function myDate(yourDateString)
{
return new Date(parseInt(yourDateString.replace('/Date(', '')));
}
<强> JSFIDDLE DEMO 强>