js日期处理:LongToDate(long型转换成日期格式)

现在日期在数据库中一般以Number类型保存(保存long值),而前台显示则需要做转换,方法如下:

//扩展Date的format方法 
Date.prototype.format = function (format) {
    var o = {
        "M+": this.getMonth() + 1,
        "d+": this.getDate(),
        "h+": this.getHours(),
        "m+": this.getMinutes(),
        "s+": this.getSeconds(),
        "q+": Math.floor((this.getMonth() + 3) / 3),
        "S": this.getMilliseconds()
    }
    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;
}

function longToDate(data){
	var time = $(data).text();
	$(data).html(new Date(parseInt(time,10)).format("yyyy-MM-dd hh:mm:ss"));  
}

flexigrid process调用

效果:


猜你喜欢

转载自blog.csdn.net/xlb744868186/article/details/50246317