js中定义后端返回的时间格式

先定义common.js

Date.prototype.format = function(format){ 
            var o =  { 
            "M+" : this.getMonth()+1, //month 
            "d+" : this.getDate(), //day 
            "H+" : this.getHours(), //hour 
            "m+" : this.getMinutes(), //minute 
            "s+" : this.getSeconds(), //second 
            "q+" : Math.floor((this.getMonth()+3)/3), //quarter 
            "S" : this.getMilliseconds() //millisecond 
            };
            if(/(y+)/.test(format)){ 
                format = format.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length)); 
            }
            for(var k in o)  { 
                if(new RegExp("("+ k +")").test(format)){ 
                    format = format.replace(RegExp.$1, RegExp.$1.length==1 ? o[k] : ("00"+ o[k]).substr((""+ o[k]).length)); 
                } 
            } 
            return format; 
        };

页面中引用common.js,然后调用

formatter: function(value,row,index){
                        return now =new Date(value).format("yyyy-MM-dd HH:mm:ss");
                    }

你可能感兴趣的:(js中定义后端返回的时间格式)