苹果手机new Date()问题

IOS new Date() 中的时间不能用(1990-05-06 12:00) 这种格式.否则会报错(不能用 '-')

解决方法:

new Date('1990-05-06 12:00') // 在ios上使用报错

//方法一: 用"/" 代替 "-"
new Date('1990/05/06 12:00')

//方法二: 正则替换
var str = '1990-05-06 12:00'
new Date(str.replace(/-/g,'/'));

亲测有效
上一篇:俄罗斯联邦的情况通报


下一篇:三:大数据架构回顾-数仓架构演进