JS中顯示時間的函式彙總

2021-06-21 12:06:44 字數 725 閱讀 5450

var mydate = new date(); 

mydate.getyear();        //獲取當前年份(2位) 

mydate.getfullyear();    //獲取完整的年份(4位,1970-????) 

mydate.getmonth();       //獲取當前月份(0-11,0代表1月) 

mydate.getdate();        //獲取當前日(1-31) 

mydate.getday();         //獲取當前星期x(0-6,0代表星期天) 

mydate.gettime();        //獲取當前時間(從1970.1.1開始的毫秒數) 

mydate.gethours();       //獲取當前小時數(0-23) 

mydate.getminutes();     //獲取當前分鐘數(0-59) 

mydate.getseconds();     //獲取當前秒數(0-59) 

mydate.getmilliseconds();    //獲取當前毫秒數(0-999) 

mydate.tolocaledatestring();     //獲取當前日期 

var mytime=mydate.tolocaletimestring();     //獲取當前時間 

mydate.tolocalestring( );        //獲取日期與時間 

js 時間獲取函式 and 友好時間顯示

update date 2019.09.14 update content 加入了時間友好顯示,兩種邏輯在末尾,其實都還可以優化的,當然,具體就不優化了,睡會兒覺先。2018.03.29 時間函式檔案 js 時間筆記 author 陳 二先生 email 2416743126 qq.com upda...

時間函式彙總

程式中用到與時間相關的函式時,需要在程式的頭部加入標頭檔案 include 有關時間的結構如下 1.time t long time t time of day in seconds 2.tm struct tm 有關時間的函式 time 功能 返回從公元1970年1月1日0時0分0秒到現在所經過的...

js實時顯示時間

mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.getday 獲取當前星期x 0 6,0代表星...