现在日期在数据库中一般以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调用
效果:
版权声明:本文为xlb744868186原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。