1.建立時間var mydate=new date();
2.獲取當前年份 mydate.getyear();(2位)
3.獲取完整的年份 mydate.getfullyear();(4位)
4.獲取月份 mydate.getmonth();(0-11月,0是1月)
5.獲取當前日期 mydate.getdate();(1-31日)
6.獲取當前時間 mydate.gettime(); (從1970.1.1開始的毫秒數)
7.獲取當前星期x mydate.getday();(0-6,0是星期天)
8.獲取當前小時數 mydate.gethours();(0-23)
9.獲取當前分鐘數 mydate.getminutes();(0-59)
10.獲取當前秒 mydate.getseconds();(0-59)
11.獲取當前毫秒數 mydate.getmilliseconds();(0-999)
12.獲取當前日期 mydate.tolocaledatestring();
13.獲取當前時間 mydate.tolocaletimestring();
14.獲取當前日期與時間 mydate.tolocalstring();
js日期函式
日期構造器 var today new date 返回當前的日期和時間 var newyear new date december 31,1998 23 59 59 輸入的是表單的字串 月 日,年 小時 分鐘 秒 var bday new date 75,1,16 引數是年份,月,日 var bda...
js 日期函式
date 物件用於處理日期和時間。建立 date 物件的語法 var mydate new date date 物件會自動把當前日期和時間儲存為其初始值。引數形式有以下 種 new date month dd,yyyy hh mm ss new date month dd,yyyy new date...
js日期函式
這篇文章主要介紹了js日期函式,包含了一些新手需要注意的,加注釋,需要的朋友可以參考下var now new date var yy now.getyear 返回從1900開始算得年份間隔,2016就返回116 yy 1900 yy 加上1900就是2016了 var mm now.getmonth...