date函式是用來處理日期和時間的,其時間是和gmt時間2023年1月1日進行比較的。
date函式有6種建構函式,如下:
new date(); //獲取當前系統日期
new date("month dd,yyyy hh:mm:ss");
new date("month dd,yyyy");
new date(yyyy,mth,dd,hh,mm,ss);
new date(yyyy,mth,dd);
new date(ms); //根據毫秒數生成指定日期
注意最後一種形式,引數表示的是需要建立的時間和gmt時間2023年1月1日之間相差的毫秒數。
各種函式的含義如下:
month:用英文表示月份名稱,從january到december
mth:用整數表示月份,從0-11(1月到12月)
dd:表示乙個月中的第幾天,從1到31
yyyy:四位數表示的年份
hh:小時數,從0(午夜)到23(晚11點)
mm:分鐘數,從0到59的整數
ss:秒數,從0到59的整數
ms:毫秒數,為大於等於0的整數
new date("january 12,2016 22:19:35"); //thu jan 12 2016 22:19:35 gmt+0800 (中國標準時間)
new date("january 12,2016"); //tue jan 12 2016 00:00:00 gmt+0800 (中國標準時間)
new date(2016,0,12,22,19,35) //tue jan 12 2016 22:19:35 gmt+0800 (中國標準時間)
new date(2016,0,12); //tue jan 12 2016 00:00:00 gmt+0800 (中國標準時間)
new date(1452528000000); //tue jan 12 2016 00:00:00 gmt+0800 (中國標準時間)
new date(); //fri jul 29 2016 11:15:00 gmt+0800 (中國標準時間)
getdate() 從 date 物件返回乙個月中的某一天 (1 ~ 31)。
getday() 從 date 物件返回一周中的某一天 (0 ~ 6)。
getmonth() 從 date 物件返回月份 (0 ~ 11)。
getfullyear() 從 date 物件以四位數字返回年份。
getyear() 請使用 getfullyear() 方法代替。
gethours() 返回 date 物件的小時 (0 ~ 23)。
getminutes() 返回 date 物件的分鐘 (0 ~ 59)。
getseconds() 返回 date 物件的秒數 (0 ~ 59)。
getmilliseconds() 返回 date 物件的毫秒(0 ~ 999)。
gettime() 返回 1970 年 1 月 1 日至今的毫秒數。
gettimezoneoffset() 返回本地時間與格林威治標準時間 (gmt) 的分鐘差。
getutcdate() 根據世界時從 date 物件返回月中的一天 (1 ~ 31)。
getutcday() 根據世界時從 date 物件返回週中的一天 (0 ~ 6)。
getutcmonth() 根據世界時從 date 物件返回月份 (0 ~ 11)。
getutcfullyear() 根據世界時從 date 物件返回四位數的年份。
getutchours() 根據世界時返回 date 物件的小時 (0 ~ 23)。
getutcminutes() 根據世界時返回 date 物件的分鐘 (0 ~ 59)。
getutcseconds() 根據世界時返回 date 物件的秒鐘 (0 ~ 59)。
getutcmilliseconds() 根據世界時返回 date 物件的毫秒(0 ~ 999)。
parse() 返回2023年1月1日午夜到指定日期(字串)的毫秒數。
setdate() 設定 date 物件中月的某一天 (1 ~ 31)。
setmonth() 設定 date 物件中月份 (0 ~ 11)。
setfullyear() 設定 date 物件中的年份(四位數字)。
setyear() 請使用 setfullyear() 方法代替。
sethours() 設定 date 物件中的小時 (0 ~ 23)。
setminutes() 設定 date 物件中的分鐘 (0 ~ 59)。
setseconds() 設定 date 物件中的秒鐘 (0 ~ 59)。
setmilliseconds() 設定 date 物件中的毫秒 (0 ~ 999)。
settime() 以毫秒設定 date 物件。
setutcdate() 根據世界時設定 date 物件中月份的一天 (1 ~ 31)。
setutcmonth() 根據世界時設定 date 物件中的月份 (0 ~ 11)。
setutcfullyear() 根據世界時設定 date 物件中的年份(四位數字)。
setutchours() 根據世界時設定 date 物件中的小時 (0 ~ 23)。
setutcminutes() 根據世界時設定 date 物件中的分鐘 (0 ~ 59)。
setutcseconds() 根據世界時設定 date 物件中的秒鐘 (0 ~ 59)。
setutcmilliseconds() 根據世界時設定 date 物件中的毫秒 (0 ~ 999)。
tosource() 返回該物件的源**。
tostring() 把 date 物件轉換為字串。
totimestring() 把 date 物件的時間部分轉換為字串。
todatestring() 把 date 物件的日期部分轉換為字串。
togmtstring() 請使用 toutcstring() 方法代替。
toutcstring() 根據世界時,把 date 物件轉換為字串。
tolocalestring() 根據本地時間格式,把 date 物件轉換為字串。
tolocaletimestring() 根據本地時間格式,把 date 物件的時間部分轉換為字串。
tolocaledatestring() 根據本地時間格式,把 date 物件的日期部分轉換為字串。
utc() 根據世界時返回 1997 年 1 月 1 日 到指定日期的毫秒數。
valueof() 返回 date 物件的原始值。
//將日期轉化字串(yyyy-mm-dd)
function datetostr(date)
if (day.length == 1)
datetime = year +"-"+ month +"-"+ day;
return datetime;
}
function strtodate(datestr)
在js中yyyy/mm/dd格式的日期是可以直接比較大小的,所以只需要將其他格式的日期轉換為這種格式就可以直接比較。例如:
function comparedate(startdate,enddate)
return true;
}
//根據出生日期計算年齡(yyyy-mm-dd)
function getbrithage(birthday)else if(nowmonth == birthmonth) }
return age;
}
js中Date的用法
js中時間戳和日期互相轉化 time是乙個時間戳,通過tolocalestring方法轉化為日期。time2是當前時間的時間戳,同理轉化為日期。tolocaledatestring 獲取日期如 2019 9 18 tolocaletimestring 獲取當前時間 如下午3 57 51 toloca...
js的date日期格式
有時候做專案會用到js的date日期格式,因為date 返回的格式不是我們需要的,date 返回格式 thu mar 19 2015 12 00 00 gmt 0800 中國標準時間 而我們則需要這樣的格式 2015 3 19 12 00 00 除非是在後台處理好時間格式,然後在頁面直接顯示。那如何...
js 中 Date 函式常見用法
走在前端的大道上 記得我剛學js的時候只知道date的一些常見的用法,有多常見?var date new date 獲取當前時間 let y date.getfullyear let m date.getmonth 1 10 0 date.getmonth 1 date.getmonth 1 let...