js中獲取日期格式

2022-02-04 14:30:52 字數 1160 閱讀 6908

1

varmydate 

=new

date();   

2document.write(mydate.getyear().tostring()+"

");       

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

3document.write(mydate.getfullyear().tostring()+"

");   

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

4document.write(mydate.getmonth().tostring()+"

");       

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

5document.write(mydate.getdate().tostring()+"

");       

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

6document.write(mydate.getday().tostring()+"

");         

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

7document.write(mydate.gettime().tostring()+"

");       

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

8document.write(mydate.gethours().tostring()+"

");       

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

9document.write(mydate.getminutes().tostring()+"

");     

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

10document.write(mydate.getseconds().tostring()+"

");     

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

11document.write(mydate.getmilliseconds().tostring()+"

");   

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

12document.write(mydate.tolocaledatestring().tostring()+"

");     

//獲取當前日期  

js中獲取日期格式

1 varmydate new date 2document.write mydate.getyear tostring 獲取當前年份 2位 3document.write mydate.getfullyear tostring 獲取完整的年份 4位,1970 4document.write myd...

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獲取當前日期 多種格式

獲取當前的日期時間 format 格式 如 yyyy mm dd hh mm ss function getnowformatdate format if strdate 0 strdate 9 var currentdate null var currenttime null if yyyy mm...