后端返回时间格式: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) 年月日必须以 /
分隔不能以 -
文章信息
- 文章标题:iPad/iPhone new Date(string) 报错:NaN - Keystion
- 文章链接:https://webclown.net/posts/iPad-iPhone-new-Date-string-报错:NaN.html
- 版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。
- 转载请注明来自 Keystion !
markdown
[iPad/iPhone new Date(string) 报错:NaN - Keystion](https://webclown.net/posts/iPad-iPhone-new-Date-string-报错:NaN.html)