ie10

new Date(Date.parse("2013-07-30"))
Tue Jul 30 08:00:00 UTC+0800 2013

new Date(Date.parse("2013-07-30 00:00:00")) 
Invalid Date 

ie 7

new Date(Date.parse("2013-07-30"))
NaN 

new Date(Date.parse("2013-07-30 00:00:00")) 
NaN 

chrome

new Date(Date.parse("2013-07-30"))
Tue Jul 30 2013 08:00:00 GMT+0800 (中国标准时间)

new Date(Date.parse("2013-07-30 00:00:00"))
Tue Jul 30 2013 00:00:00 GMT+0800 (中国标准时间)

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2018-09-18
  • 2021-06-03
  • 2022-12-23
  • 2021-08-29
  • 2022-12-23
猜你喜欢
  • 2021-08-19
  • 2021-11-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案