Js內建物件 Date

2021-08-29 07:48:30 字數 2025 閱讀 1416

var now = new date();

// console.log(now) //fri oct 19 2018 17:53:57 gmt+0800 (中國標準時間)

// 初始化自定義日期時間物件

var aaaa = new date("2018/05/01");

// console.log(aaaa) //tue may 01 2018 00:00:00 gmt+0800 (中國標準時間)

var date = new date("2018/06/13 17:20:20");

// console.log(date) //wed jun 13 2018 17:20:20 gmt+0800 (中國標準時間)

// 返回自1970-1-1 00:00:00到date物件所經過的毫秒數

console.log(now.gettime()) //1539942837368

console.log(date.gettime()) //1528881620000

// 返回自2023年以來,到當前時間物件所經過的年數。

var a = now.getyear()

console.log(a, typeof a) //118 "number"

// 獲取當前日期物件的四位年份數

var b = now.getfullyear()

console.log(b) //2018

// 返回0-11的數字,來表示1-12月。要想得到當前月份的值,需+1

var c = now.getmonth()

console.log(c) //9

// 返回當前日期物件的日

var d = now.getdate()

console.log(d) //19

// 返回當前日期物件的星期。返回0-6表示星期日-星期六。周一到週六正確,週日用0表示。

var e = now.getday()

console.log(e) //5

// 獲取小時

var f = now.gethours()

console.log(f) //17

// 獲取分

var g = now.getminutes()

console.log(g) //53

// 獲取秒

var m = now.getseconds()

console.log(m) //57

// 獲取毫秒

var n = now.getmilliseconds()

console.log(n) //368

console.log(a.tostring(),typeof a.tostring()) //118 string

console.log(now.tostring()) //fri oct 19 2018 17:53:57 gmt+0800 (中國標準時間)

console.log(now.tolocalestring()) //2018/10/19 下午5:53:57

console.log(now.tolocaletimestring()) //下午5:53:57

console.log(now.tolocaledatestring()) //2018/10/19

console.log(now.valueof()) //1539942837368

附加:上面獲取的年、月、日、時、分、秒、星期。型別全部都是number。

js簡單時分秒倒計時

0000

0000

js內建物件 Date物件

date物件 data物件可以儲存任意乙個日期,並且可以精確到毫秒數 1 1000 秒 定義 預設初始值定義 var dataname new date 使用關鍵字new data首字母必須大寫 使dataname成為物件,同時具有初始值 當前電腦系統時間 自定義初始值定義 var dataname...

js內建的Date物件

created by mengbao on 2018 12 14.建立date物件 方法1 不指定引數 var d1 new date console.log d1 console.log typeof d1 console.log d1.tolocalestring console.log typ...

js 內建物件之Date日期物件

日期物件可以儲存任意乙個日期,並且可以精確到毫秒數 1 1000 秒 定義乙個時間物件 var mydate new date 注意 使用關鍵字new,date 的首字母必須大寫。使 mydate 成為日期物件,並且已有初始值 當前時間 當前電腦系統時間 如果要自定義初始值,可以用以下方法 var ...