首頁  >  文章  >  web前端  >  js 實作日期靈活格式化的小例子_javascript技巧

js 實作日期靈活格式化的小例子_javascript技巧

WBOY
WBOY原創
2016-05-16 17:28:401064瀏覽
複製程式碼如下程式碼:

/**
 * 時間物件的格式化;
 */
Date.prototype。 format = function(format) { 
    /*
     * 例如:format="YYYY-MM-dd hh:mm:mm";
   " :this.getMonth() 1, // 月 
        "d " :this.getDate(), // 日 
       :this.getMinutes(), // 分鐘
        "s " :this.getSeconds(), // 秒
        "q " : Math.floor((this.getMonth() 3) // / 季度 
        "S" :this.getMilliseconds() 
    // 毫秒 
    }    format = format.replace( RegExp.$1, (this.getFullYear() "") 
               .substr(4 - RegExp.$1. th));          if (new RegExp("(" k ")").test(format)) { 
            format = format.replace(RegExp.$1) , RegExp.$      : (" 00" o[k]).substr(("" o[k]).length)); 
        } 
    } 
 
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn