js內建的Date物件

2022-03-14 06:03:44 字數 1661 閱讀 7098

/**

* 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(typeof d1.tolocalestring());

//生成指定時間的date物件

var d2 = new date("

2004/3/20 11:12");

console.log(d2.tolocalestring()); //轉成字串格式的本地時間

console.log(d2.toutcstring()); // 轉成字串格式的utc時間

//方法3:引數為毫秒數

var d3 = new date(5000);

console.log(d3.tolocalestring());

console.log(d3.toutcstring());

// 時間格式,隨意,/或-或,或。

//var d2 = new date("2004-3-20 11:12");

// 轉成字串格式的本地時間

// 轉成字串格式的utc時間

console.log(d2.getdate()); // 獲取那一天(多少號)

console.log(d2.getday()); // 獲取星期幾

console.log(d2.getmonth()); // 獲取月份(0-11)

console.log(d2.getfullyear()); // 獲取年

console.log(d2.getyear()); // 獲取年(2位)

console.log(d2.gethours()); // 獲取小時

console.log(d2.getminutes()); // 獲取分鐘

console.log(d2.getseconds()); // 獲取秒

console.log(d2.getmilliseconds()); // 獲取豪秒

console.log(d2.gettime()); // 返回累計毫秒數(從1970/1/1午夜)

date物件的方法:

var d =new date(); 

//getdate() 獲取日

//getday () 獲取星期

//getmonth () 獲取月(0-11)

//getfullyear () 獲取完整年份

//gethours () 獲取小時

//getminutes () 獲取分鐘

//getseconds () 獲取秒

//getmilliseconds () 獲取毫秒

//gettime () 返回累計毫秒數(從1970/1/1午夜)

Js內建物件 Date

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 0...

js內建物件 Date物件

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

js 內建物件之Date日期物件

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