Javascript JSON Date d'analyser dans IE7/IE8 renvoie NaN

Je suis de l'analyse d'une date à partir d'un JSON cas de rachat, mais la date de la montre "NaN" dans IE7/8:

//Variable from JSON feed (using JQuery's $.getJSON)
var start_time = '2012-06-24T17:00:00-07:00';

//How I'm currently extracting the Month & Day
var d = new Date(start_time);
var month = d.getMonth();
var day = d.getDate();

document.write(month+'/'+day);//"6/24" in most browsers, "Nan/Nan" in IE7/8

Ce que je fais mal? Merci!

InformationsquelleAutor Josiah | 2012-06-13