jquery easyUi columns日期格式化
方法一
- 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 formatDate(value) {
- if (value == null || value == ‘‘) {
- return ‘‘;
- }
- var dt;
- if (value instanceof Date) {
- dt = value;
- } else {
- dt = new Date(value);
- }
-
- return dt.format("yyyy-MM-dd");
- };
引用
- {field:"putAway",title:"上架时间",width:200,formatter:formatDate},
方法二
- {field:‘time‘,title:‘时间‘,
- formatter:function(value,row,index){
- var unixTimestamp = new Date(value);
- return unixTimestamp.toLocaleString();
- }
- },
jquery easyUi columns日期格式化
原文:http://www.cnblogs.com/qq3111901846/p/6728620.html