最新的簡單獲取當前時間小技巧

2021-10-10 18:46:54 字數 1096 閱讀 6088

為此,絞盡腦汁,最後也百思不得其解。

今天在乙個偶然的機會下,嘗試一種在自己的專案中可行性方案。

當前業務場景為前端js。vue環境下。又使用到element ui框架。

第一步:

var dt= new date();

第二步:

var jsondt= json.stringify(dt);

console.log(jsondt);

「2020-11-23t09:18:18.390z」

第三步:

var currentdate=jsondt.substring(1,11);

console.log(currentdate);

2020-11-23

日期已經得到了,並且可以賦值到el-date-picker控制項上的作為初始值

this.xxform.birthday=currentdate;

同理,這樣的方式我們也可以擷取到時間,不過需要注意的就是,時間獲取到的當前的格林威治時間,這裡我們需要對當前小時數進行處理:

var currenttime=jsondt.substring(12,20);

console.log(currenttime);

09:18:18

console.log((parseint(jsondt.substring(12,14))+8));//9+8=17

17最終我們對時間日期進行拼接就好了

var currenthour=(parseint(jsondt.substring(12,14))+8);

var currentmillenandss=jsondt.substring(14,20);

var newtime= currenthour+currentmillenandss;

console.log(newtime);

17:18:18

時期時間

var newdate=currentdate+」 「+newtime;

console.log(newdate);

2020-11-23 17:18:18

該方法的缺陷,目前沒有更新獲取毫秒數的時間戳。但是相對比較簡單的日期時間需求來說已經能滿足了。

微信小程式獲取當前時間戳 獲取當前時間 時間戳加減

獲取當前時間戳 var timestamp date.parse new date timestamp timestamp 1000 console.log 當前時間戳為 timestamp 獲取當前時間 var n timestamp 1000 var date new date n 年 var ...

微信小程式獲取當前時間戳 獲取當前時間 時間戳加減

pi network 免費挖礦國外熱門專案 乙個 幣大約值3元到10元 相信過去btc的人,信不信未來的pi,了解一下,唯一乙個高度與之持平的專案 獲取當前時間戳 var timestamp date.parse new date timestamp timestamp 1000 console.l...

微信小程式獲取當前時間戳 獲取當前時間 時間戳加減

獲取當前時間戳 var timestamp date.parse new date timestamp timestamp 1000 console.log 當前時間戳為 timestamp 獲取當前時間 var n timestamp 1000 var date new date n 年 var ...