zoukankan      html  css  js  c++  java
  • jquery easyUi columns日期格式化

    jquery easyUi  columns日期格式化

    方法一

    [javascript] view plain copy print?
    1. Date.prototype.format = function (format) {  
    2.     var o = {  
    3.         "M+": this.getMonth() + 1, // 月  
    4.         "d+": this.getDate(), // 日  
    5.         "h+": this.getHours(), // 小时  
    6.         "m+": this.getMinutes(), // 分  
    7.         "s+": this.getSeconds(), // 秒  
    8.         "q+": Math.floor((this.getMonth() + 3) / 3), // 刻  
    9.         "S": this.getMilliseconds()  
    10.         // millisecond  
    11.     }  
    12.     if (/(y+)/.test(format))  
    13.         format = format.replace(RegExp.$1, (this.getFullYear() + "")  
    14.             .substr(4 - RegExp.$1.length));  
    15.     for (var k in o)  
    16.         if (new RegExp("(" + k + ")").test(format))  
    17.             format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));  
    18.     return format;  
    19. };  

    [javascript] view plain copy print?
    1. //格式化日期方法  
    2. function formatDate(value) {  
    3.     if (value == null || value == '') {  
    4.         return '';  
    5.     }  
    6.     var dt;  
    7.     if (value instanceof Date) {  
    8.         dt = value;  
    9.     } else {  
    10.         dt = new Date(value);  
    11.     }  
    12.   
    13.     return dt.format("yyyy-MM-dd"); //扩展的Date的format方法(上述插件实现)  
    14. };  

    引用
    [javascript] view plain copy print?
    1. {field:"putAway",title:"上架时间",200,formatter:formatDate},  

    方法二

    [javascript] view plain copy print?
    1. {field:'time',title:'时间',    
    2.                      formatter:function(value,row,index){    
    3.                          var unixTimestamp = new Date(value);    
    4.                          return unixTimestamp.toLocaleString();    
    5.                          }    
    6.                     },   
  • 相关阅读:
    GeoServer发布Shapfile、PostGIS数据
    Geoserver+Openlayers+MySQL设计思想,GeoServer服务器搭建(Docker构建镜像)
    Linux 输入输出重定向, &>file, 2>&1, 1>&2
    Git常用命令
    Java 操作 HBase 教程
    NATAPP--实现SSH内网穿透
    Spring boot banner
    ingress 密码验证
    rook 记录
    容器网络之网桥
  • 原文地址:https://www.cnblogs.com/qq3111901846/p/6728620.html
Copyright © 2011-2022 走看看