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

<script type="text/javascript">
    var date = new Date('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  
</script>

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