84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
new Date("2013-03-18 12:12:12"),ios系统得到的为Invalid Date,这是为什么?应该怎么处理?
new Date("2013-03-18 12:12:12")
Invalid Date
认证0级讲师
Le contenu que vous souhaitez récupérer à partir du disque réseau
格式问题,不仅ios会说invalid,你在windows下也是一样的。
建议修改如下 someTime=new Date("2013-03-18T12:12:12"); 或者 anotherTime=new Date(2013,03,18,12,12,12);
注意月份中,实际是4月份哦,因为月份是从0开始的
"2013-03-18 12:12:12".replace(/-/g, "/");
你再试试。
这个是IOS的bug,安卓下面可以用 new Date("2013/03/18 12: 12: 12")和new Date("2013-03-18 12: 12: 12")但是IOS只能用new Date("2013/03/18 12 :12 :12")
Le contenu que vous souhaitez récupérer à partir du disque réseau
格式问题,不仅ios会说invalid,你在windows下也是一样的。
注意月份中,实际是4月份哦,因为月份是从0开始的
你再试试。
这个是IOS的bug,
安卓下面可以用 new Date("2013/03/18 12: 12: 12")和new Date("2013-03-18 12: 12: 12")
但是IOS只能用new Date("2013/03/18 12 :12 :12")