JS 獲取日期

2022-05-06 01:57:08 字數 1510 閱讀 7882

function getnowformatdate() 

if (strdate >= 0 && strdate <= 9)

var currentdate = date.getfullyear() + seperator1 + month + seperator1 + strdate

+ " " + date.gethours() + seperator2 + date.getminutes()

+ seperator2 + date.getseconds();

return currentdate;

}

獲取當前的日期時間 格式「yyyy-mm-dd hh:mm:ss」

還有一種簡單的獲取日期的方法,輸出格式為;2016-08-09,使用了三元表示式,防止輸出2016-011-012這種格式的。

var now = new date();

alert(now.getyear()+"-"+((now.getmonth()+1)<10?"0":"")+(now.getmonth()+1)+"-"+(now.getdate()<10?"0":"")+now.getdate());

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( );        //獲取日期與時間

//取得當前時間 

window.onload = function getnowtime()  

獲取日期的乙個簡單的三元表示式:

//格式化日期

function formatedate(date)

//呼叫函式的時候寫

formatedate(new date())//這裡new為新定義乙個日期物件

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日期,JS獲取當前日期時間,js日期格式化

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

js獲取日期時間

document.write date 獲取當前完整日期時間 var a new date var my day a.getdate var my month a.getmonth 1 var my year a.getfullyear document.write my year 年 my mon...