关于Date.parse的兼容性问题

IE下

低版本IE:
    不支持 Date.parse('2015-02-05 12:39:30') 
    支持 Date.parse('2015/02/05 12:39:30') 

firefox下


    不支持 Date.parse('foot 2015') ,这种所传参数非有效字符,
    建议使用  isNaN(str) 处理后再进行Date.parse();

firefox和 chrome 的区别

    firefox 如上
    chrome支持  Date.parse('foot 2015') ,如默认会把仅仅处理有效字符,即等效于,Date.parse(' 2015');

你可能感兴趣的:(关于Date.parse的兼容性问题)