// google new Date("2015-10-29") Thu Oct 29 2015 08:00:00 GMT+0800 (中国标准时间)
new Date("2015/10-29") Thu Oct 29 2015 00:00:00 GMT+0800 (中国标准时间) new Date("2015/10/29") Thu Oct 29 2015 00:00:00 GMT+0800 (中国标准时间)
// IE11 new Date("2015-10-29") [date] NaN
new Date("2015/10-29") [date] Thu Oct 29 00:00:00 UTC+0800 2015 new Date("2015/10/29") [date] Thu Oct 29 00:00:00 UTC+0800 2015
js new Date() 在IE11和google的兼容性
原文:http://www.cnblogs.com/pumushan/p/4874914.html