我在 json 响应中接收日期并使用日期格式的javascript 库对其进行解析。它在 Firefox 中运行良好,但在 IE 中引发异常。
从 json response.actionDateTime 收到的日期:2012-04-12T18:23:49
这是我尝试过的
dateFormat(response.actionDateTime,"dd-mmm-yyyy HH:MM:ss")
它在以下日期格式库行中引发异常
date = date ? new Date(date) : new Date;
if (isNaN(date)) throw SyntaxError("invalid date");
我还无法解决它。