日期構造器:
var today = new date();
返回當前的日期和時間
var newyear = new date("december 31, 1998 23:59:59");
輸入的是表單的字串 「月 日,年 小時:分鐘:秒」
var bday = new date(75, 1, 16);
引數是年份,月,日
var bday = new date(75, 1, 16, 12, 0, 0);
引數是年份,月,日,小時,分鐘,秒
這裡作點補充:月份是從0開始的,比如一月份=0,二月份=1,三月份=3等等。
日期訪問方法
method(方法)
description (描述)
value(數值)
getyear()
返回年份的最後兩位數字
2001
getmonth()
返回年份中的第幾月(0到11)
5getdate()
返回月份中的第幾日(1到31)
2getday()
返回星期中的第幾天 (0到6)
6gettimezoneoffset()
返回當地時間與格林尼治天文台平均時間的差別
-480 (-8h)
gethours()
返回一天中的時針點數(0到23)
16getminutes()
返回分鐘 (0..59)
8getseconds()
返回時間的秒 (0到59)
24gettime()
返回自從公元2023年1月1日的毫秒數
991469304470
這裡注意:ie瀏覽器的一些版本返回timezoneoffset數值是用錯誤的符號,比如用」-」代替」+」等等。
日期設定方法
setdate()
設定每月中的第幾天(從0到30)
sethours()
設定小時(從0到23)
setminutes()
設定分鐘(從0到59)
setmonth()
設定月份(從0到11)
setseconds()
設定秒數(從0到59)
settime()
設定時間(從公元以來的毫秒數)
setyear()
設定年份
其它的日期方法
parse
轉化日期字串為自從公元以來的毫秒數,比如date.parse(「date string」)
tostring()
sat jun 2 16:08:24 utc+0800 2001
togmtstring()
sat, 2 jun 2001 08:08:24 utc
tolocalestring()
2023年6月2日 16:08:24
js 日期函式
date 物件用於處理日期和時間。建立 date 物件的語法 var mydate new date date 物件會自動把當前日期和時間儲存為其初始值。引數形式有以下 種 new date month dd,yyyy hh mm ss new date month dd,yyyy new date...
js日期函式
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...
js日期函式
這篇文章主要介紹了js日期函式,包含了一些新手需要注意的,加注釋,需要的朋友可以參考下var now new date var yy now.getyear 返回從1900開始算得年份間隔,2016就返回116 yy 1900 yy 加上1900就是2016了 var mm now.getmonth...