zoukankan      html  css  js  c++  java
  • ios和android的时间格式的差异

    如果使用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 (中国标准时间)

  • 相关阅读:
    2017.8.07
    2017.8.05
    2017.8.04
    2017.8.03
    2017.8.02
    2017.8.01
    2017.7.31
    2017.7.29
    2017.7.28
    简易日历
  • 原文地址:https://www.cnblogs.com/ron123/p/9933357.html
Copyright © 2011-2022 走看看