Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)转化为yyyy-MM-dd(通过js)

'Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)'--此格式日期无法传到java后台,须格式化,方法如下


var d = new Date('Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)');  


youWant=d.getFullYear() + '-' + (d.getMonth() + 1) + '-' + d.getDate() + ' ' + d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds();  

posted @ 2020-03-06 16:09  奔向太阳的向日葵  阅读(1292)  评论(0编辑  收藏  举报