标签:标准 中国 时间格式 roi sep date 方法 ios nbsp
如果使用new Date(‘2018-09-03‘) .getTime() android 是正常, ios 会出现null
解决方法是
new Date(‘2018/09/03 00:00:00‘) .getTime() ios和android都正常
new Date(‘2018-09-03‘) 在pc浏览器多出8个小时
Mon Sep 03 2018 08:00:00 GMT+0800 (中国标准时间)
new Date(‘2018/09/03‘)
Mon Sep 03 2018 00:00:00 GMT+0800 (中国标准时间)
标签:标准 中国 时间格式 roi sep date 方法 ios nbsp
原文地址:https://www.cnblogs.com/ron123/p/9933357.html