美文网首页
显示invalid date

显示invalid date

作者: 回首往事J | 来源:发表于2019-01-24 12:59 被阅读0次

js中使用new Date()方法,例如:new Date("2017-06-23 17:00:00")结果为 invalid date 或为 null,参数格式不规范,不能兼容所有浏览器;

解决方法:

let time = "2017-08-27 19:00:00";

time = time.replace(/-/g,':').replace(' ',':');

let  newTimer = new Date(time);

console.log("newTimer"+newTimer);

相关文章

网友评论

      本文标题:显示invalid date

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