自己寫的對時間操作的工具

2021-09-26 03:07:43 字數 1334 閱讀 3782

/**

* 時間格式換算

* @param time_num 毫秒數

* 將微秒數轉變成,時,分,秒

* @return "00:00:00"格式

*/const

formattime

=function

(time_num)

else

if(time_num >= second && time_num < minute)

else

if(time_num >= minute && time_num < hour)

else

if(time_num >= hour && time_num < hour*99)

else}}

else}}

;/**

* 為不滿十位的數加0

* @param e

* @return 例如:15 => "15"; 1 => "01"

*/const

addzero

=function

(e)else}}

;/**

* @param h 拼接引數小時

* @param m 拼接引數分鐘

* @param s 拼接引數秒

* @return {}

*/const

joinstring

=function

(h,m,s)};

/** * 開啟倒計時

* @param time_num 毫秒數

* @param callback 函式,用於嵌入定時器執行引數為秒數 callback(string)

* @return

*/const

countzerotime

=function

(time_num,callback)

else

if(second_num >=

1&& second_num <60)

;},1000);

}else

if(second_num >=

60&& second_num <60*

60)else

if(minute_count >

0&& sec_count ===0)

else},

1000)}

else

}else};

module.exports =

;

目前只有兩個方法

1:乙個是傳毫秒數返回時分秒:「00:00:00」

2:乙個是乙個小時內的倒計時

不定時更新

js對時間的操作

獲取當前時間 var mydate new date 獲取時間中的年月日時分秒 mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲...

C 對時間的操作

獲取當前星期的開始日期和結束日期 private void timebe out string bdate,out string edate else if firstday.dayofweek dayofweek.monday else if firstday.dayofweek dayofwee...

C 中對時間的操作

1 datetime 數字型 system.datetime currenttime new system.datetime 1.1 取當前年月日時分秒 currenttime system.datetime.now 1.2 取當前年 int 年 currenttime.year 1.3 取當前月 ...