熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

js 實現日期靈活格式化的小例子

2022-06-13   來源: JSP教程 
這篇文章介紹了js實現日期靈活格式化的小例子有需要的朋友可以參考一下   復制代碼 代碼如下:

  
/**
 * 時間對象的格式化;
 */
Dateprototypeformat = function(format) { 
    /*
     * eg:format="YYYYMMdd hh:mm:ss";
     */
    var o = { 
        "M+" :thisgetMonth() + // month 
        "d+" :thisgetDate() // day 
        "h+" :thisgetHours() // hour 
        "m+" :thisgetMinutes() // minute 
        "s+" :thisgetSeconds() // second 
        "q+" :Mathfloor((thisgetMonth() + ) / ) // quarter 
        "S" :thisgetMilliseconds() 
    // millisecond 
    } 
    if (/(y+)/test(format)) { 
        format = formatreplace(RegExp$ (thisgetFullYear() + "") 
                substr( RegExp$length)); 
    } 
    for ( var k in o) { 
        if (new RegExp("(" + k + ")")test(format)) { 
            format = formatreplace(RegExp$ RegExp$length == ? o[k] 
                    : ("" + o[k])substr(("" + o[k])length)); 
        } 
    } 
    return format; 
}


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20241.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.