js 處理日期格式化

格式化時間戳

/**
 * 時間戳轉換
 */
var getLocalTime = function(value,type) {
    if (value == null || value == '') {
        return '';
    }
    var dt;
    if (value instanceof Date) {
        dt = value;
    }
    else {
        dt = new Date(value);
        if (isNaN(dt)) {
            value = value.replace(/\/Date\((-?\d+)\)\//, '$1'); //將那個長字符串的日期值轉換成正常的JS日期格式
            dt = new Date();
            dt.setTime(value);
        }
    }
     switch (type){
     case 1:
         return dt.format("yyyy年MM月dd日");   //這裏用到一個javascript的Date類型的拓展方法
         break;
     case 2:
         return dt.format("yyyy年MM月dd日 hh:mm:ss");   //這裏用到一個javascript的Date類型的拓展方法
         break;
     case 3:
         return dt.format("yyyy-MM-dd");   //這裏用到一個javascript的Date類型的拓展方法
         break;
     case 4:
         return dt.format("yyyy-MM-dd hh:mm:ss");   //這裏用到一個javascript的Date類型的拓展方法
         break;
     }

}

/**
 * 日期顯示的格式化
 */
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;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章