JS時間物件

2021-09-22 13:03:26 字數 1118 閱讀 8129

獲取年、月、日、時、分、秒

var date = new date();//時間物件

var gmt = date.togmtstring();//時間物件轉換成字串,獲取格林威治時間

​/* 年 */

var year = date.getfullyear();

/* 月 */

var month = date.getmonth() + 1;//外國的月份是從0開始的所以要加1

/* 日 */

var dd = date.getdate();

/* 星期 */

var week = date.getday();

/* 時 */

var hour = date.gethours();

/* 分 */

var miunte = date.getminutes();

/* 秒 */

var second = date.getseconds();

時間戳

從1970/1/1 00:00:00 到現在的時間戳,以毫秒顯示

var date = new date();

date.gettime();//獲取時間戳 1557760055014

​/* 建立未來的時間 */

var date_2 = new date(2020,1,1,0,0,0);

​/* 從1970加2020毫秒 */

var date_2 = new date(2020);//乙個引數的時候,如果兩個引數的時候就是建立的未來時間

時間差

時間物件相減返回毫秒

var date_1 = new date();

​settimeout(function(),1000)

倒計時時間 ------ 利用時間差來計算

document

距離六一兒童節還有18天0小時26分鐘0秒

js時間物件

1 當前時間換時間戳 var timestamp parseint new date gettime 1000 當前時間戳 document.write timestamp 2 當前時間換日期字串 var now new date var yy now.getfullyear 年var mm now...

js 時間物件

1.date 1.單位 fullyear month date day hours minutes seconds milliseconds 2.每個單位上都有一對兒get set方法 其中 get 專門獲取單位的數值 set 專門設定單位的數值 比如 date.getdate date.getfu...

js 時間物件 字元物件

var str hello 字面量方式建立 console.log str instanceof string falsevar str new string world console.log str instanceof string true console.log str instanceo...