JavaScript won't parse GMT Date/Time Format

后端 未结 6 2075
我在风中等你
我在风中等你 2021-01-22 06:33

I\'m trying to get JavaScript to parse a date and time format for me, with the eventual aim of telling me the days passed since that date and the time right now (locally).

6条回答
  •  迷失自我
    2021-01-22 07:29

    The expected format is the American format: m/d/yyyy hh:mm:ss

    var date1 = new Date("2008-10-01 06:21:43"); //fails
    var date2 = new Date("10/1/2008 06:21:43"); //works correctly
    

提交回复
热议问题