美文网首页
关于Date.parse的兼容性问题

关于Date.parse的兼容性问题

作者: Kinler | 来源:发表于2015-12-28 11:00 被阅读0次

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的兼容性问题

      本文链接:https://www.haomeiwen.com/subject/ulibhttx.html