JS Date日期函式

2021-08-21 14:00:46 字數 1070 閱讀 9110

var

date

=new

date() ; //獲取當前時間

console.

log(date

.prototype);//date的方法有哪些

//把日期轉為時間戳

console.

log(date

.parse(new

date())); //獲取當前時間戳

var t1 =

newdate("2018/01/01 08:08:08"); //指定日期

console.

log(date

.parse(t1)); //指定日期的時間戳

//經測試 -0 也可以得到日期的時間戳

console.

log(t1-

0); //指定日期的時間戳

var t2 =

newdate(t1-

0); /**

用時間戳取得日期

getdate() ;

//指定格式

getfullyear() ;// 年

getmonth() ;//月 + 1

getdate() ;//日

gethours() ;//時

getminutes() ;//分

getseconds() ;//秒

Js date日期格式處理

獲取當前時間的周一到週日 function getdates return dates console.log getdates 2020 8 24 2020 8 25 2020 8 26 2020 8 27 2020 8 28 2020 8 29 2020 8 30 當前日期減去前1小時 7天 1...

js Date 函式方法

var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.get...

JS Date函式整理

js date 物件用於處理日期和時間。建立 date 物件的語法 var mydate new date date 物件會自動把當前日期和時間儲存為其初始值。引數形式有以下 種 new date month dd,yyyy hh mm ss new date month dd,yyyy new d...