js格式化日期如何實(shí)現(xiàn)
2023-06-12 17:37:47 閱讀(97)
Js獲取當(dāng)前日期時(shí)間及格式化代碼?
若傳入的對象是:1366853842000var tmp = dt.toString().replace(/\/Date\((\d+)\)\//gi, "$1") ;var time = new Date(Math.abs(tmp));這time變量就為Date()類型了;---Date對象的方法: time.getFullYear():獲取4位年份; time.getMonth():獲取月份。從0開始記,所以要+1; time.getDate():獲取 日; time.getHours():獲取 小時(shí); time.getMinutes():獲取 分鐘; time.getSeconds():獲取 秒數(shù);
未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明出處