您好,我有一个 XML 文件和一个“创建于”标签,用于存储日期和时间,如下所示 2012-09-15 02:08:46 我正在尝试创建一个新的 Date 对象,以便我可以轻松打印出日期和月份年。但它不喜欢这种格式。
像这样的东西
var theDate = new Date(Date.parse(storyDate));
console.log(theDate.getMonth());
theDate = theDate.getDate() + ", " + theDate.getMonth();
谢谢
更新:我可以让它在 Chrome 但不是 Firefox 中工作。更新:找到答案,谢谢大家。为什么投反对票?事实证明这是一个合理的问题。我错过了一个T。