js對時間的一些操作

2022-06-11 13:24:13 字數 701 閱讀 7794

new date()  //thu dec 27 2018 12:16:16 gmt+0800 (中國標準時間);

new date('2018-1-1,12:20:20'/1258454512000)  //轉換時間格式的字串或者1970到現在的毫秒數 為中國標準時間

new date().gethours() // 獲取當前時間的小時 型別為數字

new date().getminutes() // 獲取當前時間的分鐘 型別為數字

new date().getseconds() // 獲取當前時間的秒 型別為數字

new date().getday() // 獲取本週的星期 型別為數字 星期日為0

new date().getfullyear() // 獲取年份 型別為數字 

new date().getmonth()+1 // 獲取月份 型別為數字 本月的月份

new date().getdate() // 獲取日 型別為數字 

new date().gettime() == date.now('時間') 獲取從2023年到現在的毫秒數

new date().tolocalestring() 根據本地時間把今天的日期轉換為字串 // "2019/1/8 上午11:28:07"

new date().tolocalestring('chinese',) 24小時制 //"2019/1/8 13:29:50"

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 取當前月 ...