EasyUI 时间格式化「建议收藏」

EasyUI 时间格式化「建议收藏」方法1:formatter:function(value,row,index){                           var unixTimestamp = new Date(value);                           return unixTimestamp.toLocaleString();                           }方法2…

大家好,又见面了,我是你们的朋友全栈君。

方法1:

formatter:function(value,row,index){  

                         var unixTimestamp = new Date(value);  

                         return unixTimestamp.toLocaleString();  

                         }

方法2:

formatter : function(value) {

            var date = new Date(value);

            var year = date.getFullYear().toString();

            var month = (date.getMonth() + 1);

            var day = date.getDate().toString();

            var hour = date.getHours().toString();

            var minutes = date.getMinutes().toString();

            var seconds = date.getSeconds().toString();

            if (month < 10) {

                month = “0” + month;

            }

            if (day < 10) {

                day = “0” + day;

            }

            if (hour < 10) {

                hour = “0” + hour;

            }

            if (minutes < 10) {

                minutes = “0” + minutes;

            }

            if (seconds < 10) {

                seconds = “0” + seconds;

            }

            return year + “-” + month + “-” + day + ” ” + hour + “:” + minutes + “:” + seconds;

        }

方法3:

formatter: formatDatebox

Date.prototype.format = function (format) {  

    var o = {  

        “M+”: this.getMonth() + 1, // month  

        “d+”: this.getDate(), // day  

        “h+”: this.getHours(), // hour  

        “m+”: this.getMinutes(), // minute  

        “s+”: this.getSeconds(), // second  

        “q+”: Math.floor((this.getMonth() + 3) / 3), // quarter  

        “S”: this.getMilliseconds()   // millisecond  

    }  ;

    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 formatDatebox(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”); //扩展的Date的format方法(上述插件实现)  

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/145056.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号