标签:连接 replace nan var 安卓 兼容问题 兼容 date() 显示
正常写法:
var time = new Date("2019-08-24 12:30:00");
IOS中不支持 - 连接日期
需要写成
var time = new Date("2019-08-24 12:30:00".replace(/-/g, "/"));
这样来兼容ios
标签:连接 replace nan var 安卓 兼容问题 兼容 date() 显示
原文地址:https://www.cnblogs.com/chenluqing/p/11403981.html