格式化 extjs 的时间对象 Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)
var d = new Date( 'Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)' );
//yyyy-MM-dd HH:mm:ss
var formatIt = d.getFullYear() + '-' + (d.getMonth() + 1) + '-' + d.getDate() + ' '
+ d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds();