Js獲取當前日期時間 比較及正規表示式轉換格式

2021-06-27 05:14:45 字數 835 閱讀 5963

獲取當前日期時間

var now = new date();

now.getyear(); 

//獲取當前年份(2位)

now.getfullyear(); 

//獲取完整的年份(4位,1970-****)

now.getmonth(); 

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

now.getdate(); 

//獲取當前日(1-31)

now.getday(); 

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

now.gettime(); 

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

now.gethours(); 

//獲取當前小時數(0-23)

now.getminutes(); 

//獲取當前分鐘數(0-59)

now.getseconds(); 

//獲取當前秒數(0-59)

now.getmilliseconds(); 

//獲取當前毫秒數(0-999)

now.tolocaledatestring(); 

//獲取當前日期

now.tolocaletimestring(); 

//獲取當前時間

now.tolocalestring( ); 

//獲取日期與時間

//日期時間比較

function getbuxiu()

else}}

return judge; 

}//日期時間格式轉換

function datediff(sdate1, sdate2)

Js獲取當前日期時間

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

JS獲取當前日期時間

var mydate new date var years mydate.getfullyear 從date 物件以四位數字返回年份 var months mydate.getmonth 從date 物件返回月份 0 11 var days mydate.getdate 從date物件返回乙個月中的...

Js獲取當前日期時間

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