JS格式化Thu May 12 2017 08:00:00 GMT+0800 (中国标准时间)文章

var date = newDate('Thu May 12 2017 08:00:00 GMT+0800 (中国标准时间)');

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

//yyyy-MM-dd hh:mm:ss

你可能感兴趣的:(JS格式化Thu May 12 2017 08:00:00 GMT+0800 (中国标准时间)文章)