10. js时间格式转换

{
   field : 'CREATE_TIME',
   width : fixWidth(0.10),
   title : '创建时间',
   align : 'center',
   hidden: true,
   formatter : function(value,rowData, index) {
      if(!isEmpty(value)){
         var date = new Date(value);
         return DateFormat(date,'yyyy-MM-dd hh:mm:ss');
      }
      return value;
   }
}

上一篇:《oracle每日一练》oralce数据库的导入导出


下一篇:C#如何在子窗体获取父窗体的实例