Skip to content

iPad/iPhone new Date(string) 报错:NaN

发表于:

文章分类:web

文章标签:new Date

阅读量:

后端返回时间格式:2019-06-30,前端需要获取这天结束时间;

js
new Date('2019-06-30 23:59:59')  // not working

这里借助 momentjs 处理了一下

js
var time = "2019-06-30" + " 23:59:59";

time = moment(time, 'YYYY-MM-DD hh:mm:ss').format('YYYY/MM/DD hh:mm:ss');

new Date(time); // working

iOS new Date(string) 年月日必须以 / 分隔不能以 -

上一篇
下一篇
总访问量:-