首頁 > web前端 > js教程 > 主體

JS實作時間格式化的方式總結_javascript技巧

WBOY
發布: 2016-05-16 17:19:58
原創
1156 人瀏覽過

複製程式碼 程式碼如下:

//擴充Date的格式方法
Date.prototype.format = function (format) {
    var o = {
     : >        "d ": this.getDate(),
        "h ": this.getHours(),
    Seconds(),
        "q ": Math.floor((this.getMonth() 3) / 3),
        "S": this.getMilliseconds()        format = format.replace(RegExp.$1, (this.getFullYear() "").substr(4 - RegExp.$1.length));
 var k in o) {
        if (new RegExp("(" k ")").test(format)) {
         ? o[k] : ("00" o[k]).substr(("" o[k]).length));
        }
    }
    }
    }
    }
    }
    返回格式; 🎜>/**
*轉換日期物件為日期字串 
* @param date 日期對象 
* @param isFull 是否為完整的日期資料, 
*       01:05:04" 
*               且為false時, 格式如"2000-03-05" 
* @return 符合要求的日期字串
* @return 符合要求的日期字串
* @return 符合要求的日期字串
* @return 符合要求的日期字符串
*/ 
function getSmpFormatDate(date, isFull) {
    var pattern = "";
  模式= "yyyy-MM-dd hh:mm:ss";
    } else {
        模式= "yyyy-MM-dd";
    }
"yyyy-MM-dd";
  🎜>}
/**
*轉換目前日期物件為日期字串 
* @param date 日期物件 
* @param isFull 是否為完整的日期資料, 
*         05 01:05:04" 
*               為false時, 格式如"2000-03-05" 
* @return 符合要求的日期*/ 

function getSmpFormatNowDate(isFull) {    return getSmpFormatDate(new Date(), isFull);

}
/**
*轉換long值為日期字串 
* @param l long值 
* @param isFull 是否為完整的日期資料, 
*         01:05:04" 
*               且為false時, 格式如"2000-03-05" 
* @return 符合要求的日期字串
* @return 符合要求的日期字串
* @return 符合要求的日期字串
* @return 符合要求的日期字符串

*/ 

}
/**
*轉換long值為日期字串 
* @param l long值 
* @param pattern 格式字串,例如:yyyy-MM-dd hh:mm:ss 
* @return 符合要求的日期字串 
*/ 

function getSmpFormatDateByLong(l, isFull) {

    return getSmpFormatDate(new Date(l), isFull);

}
/**
*轉換日期物件為日期字串 
* @param l long值 
* @param pattern 格式字串,例如:yyyy-MM-dd hh:mm:ss 
* @return 符合要求的日期字串 
/**
function getFormatDateByLong(l,pattern) {
    return getFormatDate(new Date(l),pattern);
}
/***/ ) ) ) {
    if (日期== 未定義) {
        date = new Date();
    }
  MM -dd hh :mm:ss";
    }
    return date.format(pattern);
}

//alert(getSmpFormatDate(new Date(1279849429000), true));
//alert(getSmpFormatDate(new Date(1279849429000),false));   
//alert(getSmpFormatDateByLong(1279829423000, true));
//alert(getSmpFormatDateByLong(1279829423000,false));   
//alert(getFormatDateByLong(1279829423000, "yyyy-MM"));
//alert(getFormatDate(new Date(1279829423000), "yy-atDate(new Date(1279829423000), “ (1279849429000, "yyyy-MM hh:mm"));

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板