41

我正在从 JSON 事件源解析日期 - 但日期在 IE7/8 中显示“NaN”:

// 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

我究竟做错了什么?谢谢!

4

5 回答 5

68

在较旧的浏览器中,您可以编写一个为您解析字符串的函数。

这个创建了一个 Date.fromISO 方法——如果浏览器可以从 ISO 字符串中本地获取正确的日期,则使用本地方法。

一些浏览器部分正确,但返回了错误的时区,因此仅检查 NaN 可能行不通。

填充物:

(function(){
    var D= new Date('2011-06-02T09:34:29+02:00');
    if(!D || +D!== 1307000069000){
        Date.fromISO= function(s){
            var day, tz,
            rx=/^(\d{4}\-\d\d\-\d\d([tT ][\d:\.]*)?)([zZ]|([+\-])(\d\d):(\d\d))?$/,
            p= rx.exec(s) || [];
            if(p[1]){
                day= p[1].split(/\D/);
                for(var i= 0, L= day.length; i<L; i++){
                    day[i]= parseInt(day[i], 10) || 0;
                };
                day[1]-= 1;
                day= new Date(Date.UTC.apply(Date, day));
                if(!day.getDate()) return NaN;
                if(p[5]){
                    tz= (parseInt(p[5], 10)*60);
                    if(p[6]) tz+= parseInt(p[6], 10);
                    if(p[4]== '+') tz*= -1;
                    if(tz) day.setUTCMinutes(day.getUTCMinutes()+ tz);
                }
                return day;
            }
            return NaN;
        }
    }
    else{
        Date.fromISO= function(s){
            return new Date(s);
        }
    }
})()

结果:

var start_time = '2012-06-24T17:00:00-07:00';
var d =  Date.fromISO(start_time);
var month = d.getMonth();
var day = d.getDate();

alert(++month+' '+day); // returns months from 1-12
于 2012-06-13T18:43:18.583 回答
25

对于 ie7/8 我刚刚做了:

var ds = yourdatestring;
ds = ds.replace(/-/g, '/');
ds = ds.replace('T', ' ');
ds = ds.replace(/(\+[0-9]{2})(\:)([0-9]{2}$)/, ' UTC\$1\$3');
date = new Date(ds);

这会将所有出现的“-”替换为“/”,将时间标记“T”替换为空格,并将时区信息替换为 IE 友好的字符串,使 IE7/8 能够正确解析字符串中的日期。为我解决了所有问题。

于 2013-07-24T09:09:41.503 回答
5

请参阅 RobG 在Result of toJSON() on a date is different between IE8 and IE9+的帖子。

下面的函数在 IE 8 及更低版本中对我有用。

// parse ISO format date like 2013-05-06T22:00:00.000Z
function convertDateFromISO(s) {
  s = s.split(/\D/);
  return new Date(Date.UTC(s[0], --s[1]||'', s[2]||'', s[3]||'', s[4]||'', s[5]||'', s[6]||''))
}

你可以像下面这样测试:

var currentTime = new Date(convertDateFromISO('2013-05-06T22:00:00.000Z')).getTime();
alert(currentTime);
于 2014-09-19T02:34:22.100 回答
3

我建议http://momentjs.com/解决跨浏览器日期问题。

于 2013-10-18T19:28:37.417 回答
1

@gib 感谢您对 Moment.js 的建议。这个小型库确实有助于处理日期和 JavaScript。

Moment.js 解决了我也遇到的原始问题中描述的问题。IE8 在解析为新的 Date() 对象时将 JSON ISO 日期显示为 NaN。

快速解决方案(在您的页面中包含 moment.js,或将代码复制到您的 js 函数中包含)

如果您只需要在页面上显示从 JSON ISO 日期加载的日期,请执行以下操作:

order_date = moment(data.OrderDate); //create a "moment" variable, from the "data" object in your JSON function in Protoype or jQuery, etc.

$('#divOrderDate).html(order_date.calendar()); //use Moment's relative date function to display "today", "yesterday", etc.

或者

order_date = moment(data.OrderDate); //create a "moment" variable, from the "data" object in your JSON function in Protoype or jQuery, etc.

$('#divOrderDate).html(order_date.format('m/d/YYYY')); //use Moment's format function to display "2/6/2015" or "10/19/2014", etc.  

如果您必须有一个 Date() 对象(例如用于 jQuery 组件),请执行以下操作以成功填充 JSON 提供的 ISO 日期。(这假设您已经在处理 JSON 数据的函数中。)

var ship_date = new Date(moment(data.ShipDate).format('m/d/YYYY'));  //This will successfully parse the ISO date into JavaScript's Date() object working perfectly in FF, Chrome, and IE8.

//initialize your Calendar component with the "ship_date" variable, and you won't see NaN again.
于 2014-09-28T17:35:58.850 回答