JS_javascript 기술에서 시간 형식을 구현하는 방법 요약

WBOY
풀어 주다: 2016-05-16 17:19:58
원래의
1144명이 탐색했습니다.

코드 복사 코드는 다음과 같습니다.

//扩展Date的格式方法
Date.prototype.format = function (format) {
    var o = {
        "M ": this.getMonth() 1,
        "d ": this.getDate(),
        "h ": this.getHours(),
        "m ": this.getMinutes(),
        "s ": this.getSeconds(),
        "q ": Math.floor((this.getMonth() 3) / 3),
        "S": this.getMilliseconds()
    }
    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));
        }
    }
    返回格式;
}
/** 
*转换日期对象为日期字符串 
* @param date 日期对象 
* @param isFull 是否为完整的日期数据, 
*               为true时, 格式如"2000-03-05 01:05:04" 
*               为false时, 格式如 "2000-03-05" 
* @return 符合要求的日期字符串 
*/ 
function getSmpFormatDate(date, isFull) {
    var pattern = "";
    if (isFull == true || isFull == undefined) {
模式 = "yyyy-MM-dd hh:mm:ss";
    } else {
        模式 = "yyyy-MM-dd";
    }
    return getFormatDate(日期, 模式);
}
/** 
*转换当前日期对象为日期字符串 
* @param date 日期对象 
* @param isFull 是否为完整的日期数据, 
*               为true时, 格式如"2000-03-05 01:05:04" 
*               为false时, 格式如 "2000-03-05" 
* @return 符合要求的日期字符串 
*/ 

function getSmpFormatNowDate(isFull) {
    return getSmpFormatDate(new Date(), isFull);
}
/** 
*转换long值为日期字符串 
* @param l long值 
* @param isFull 是否为完整的日期数据, 
*               为true时, 格式如"2000-03-05 01:05:04" 
*               为false时, 格式如 "2000-03-05" 
* @return 符合要求的日期字符串 
*/ 

function getSmpFormatDateByLong(l, isFull) {
    return getSmpFormatDate(new Date(l), isFull);
}
/** 
*转换long值为日期字符串 
* @param l long值 
* @param pattern 格式字符串,例如:yyyy-MM-dd hh:mm:ss 
* @return 符合要求的日期字符串 
*/ 

function getFormatDateByLong(l,pattern) {
    return getFormatDate(new Date(l),pattern);
}
/** 
*转换日期对象为日期字符串 
* @param l long值 
* @param pattern 格式字符串,例如:yyyy-MM-dd hh:mm:ss 
* @return 符合要求的日期字符串 
*/ 
function getFormatDate(date,pattern) ) {
    if (日期 == 未定义) {
        date = new Date();
    }
    if (模式 == 未定义) {
        模式 = "yyyy-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-MM"));
//alert(getFormatDateByLong (1279849429000, "yyyy-MM hh:mm"));

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿