美文网首页
js new Date('2015-01-01 00:00:00

js new Date('2015-01-01 00:00:00

作者: 麻辣小面瘫 | 来源:发表于2017-07-07 13:25 被阅读0次

    在Safari IOS 上使用(new Date('2015-01-01 00:00:00')) .getTime() 返回NaN,原因就是不兼容;
    解决办法 将字符串的‘-’替换成‘/’
    '2015-01-01 00:00:00'.replace(/-/g,'/')

    相关文章

      网友评论

          本文标题:js new Date('2015-01-01 00:00:00

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