代码如下:ormatDate:function(dateNum){var date=new Date(dateNum*1000);return date.getFullYear()+”-“+fixZero(date.getMonth()+1,2)+”-“+fixZero(date.getDate(),2)+” “+fixZero(date.getHours(),2)+”:”+fixZero(date.getMinutes(),2)+”:”+fixZero(date.getSeconds(),2)