js 時間格式化

2021-09-02 23:57:45 字數 879 閱讀 9014

1

//對date的擴充套件,將 date 轉化為指定格式的string2//

月(m)、日(d)、小時(h)、分(m)、秒(s)、季度(q) 可以用 1-2 個佔位符, 3//

年(y)可以用 1-4 個佔位符,毫秒(s)只能用 1 個佔位符(是 1-3 位的數字) 4//

例子: 5//

(new date()).format("yyyy-mm-dd hh:mm:ss.s") ==> 2006-07-02 08:09:04.423 6//

(new date()).format("yyyy-m-d h:m:s.s") ==> 2006-7-2 8:9:4.18

7 date.prototype.format = function (fmt) ;

17if (/(y+)/.test(fmt)) fmt = fmt.replace(regexp.$1, (this.getfullyear() + "").substr(4 - regexp.$1.length));

18for (var k in

o)19

if (new regexp("(" + k + ")").test(fmt)) fmt = fmt.replace(regexp.$1, (regexp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" +o[k]).length)));

20return

fmt;21}

22呼叫:

2324

var time1 = new date().format("yyyy-mm-dd");

25var time2 = new date().format("yyyy-mm-dd hh:mm:ss");

js時間格式化

這是最近寫的乙個專案需要用到的考勤月和自然月,這種是最笨的判斷性,後來上網找了一些時間的格式化,var d new date this.nowdatarq d.getdate if this.nowdatarq 21 else else else if d.getmonth 2 12 else if...

js 時間格式化

1 常用時間函式 let now newdate console.log now 輸出 wed jan 02 2019 11 55 21 gmt 0800 中國標準時間 console.log now.todatestring 日期字串,輸出 wed jan 02 2019 console.log ...

時間格式化js,

module.exports datetime if y test fmt for let k in o return fmt datetime 輸入是時間的字串。比如在前一頁 根據本地時間格式,把 date 物件轉換為字串。在轉入formattime.js後,let date new date d...