我正在尝试将 rss 提要的日期格式化为月/日/年(2012 年 8 月 3 日)。我正在使用以下代码执行此操作:
// pubDate
postDate = new Date("Fri Aug 03 2012 06:08:11 GMT-0700");
// reformat pubDate
pubDate = postDate.getMonth() + "/" + postDate.getDate() + "/" + postDate.getFullYear();
// return pubDate
console.log(pubDate + " pubDate");
使用我当前的代码,输出是 2012 年 7 月 3 日,但月份不正确。我得到 7 而不是 8。如何让它产生正确的月份?
演示:http: //jsfiddle.net/LmZMX/