時間格式轉換 時間戳的轉換

2022-09-02 17:06:11 字數 1333 閱讀 5215

1、thu mar 07 2019 12:00:00 gmt+0800 (中國標準時間) 轉換為 2019-03-07 12:00:00

const d = new date(thu mar 07 2019 12:00:00 gmt+0800(中國標準時間))

const resdate = d.getfullyear() + '-' + this.p((d.getmonth() + 1)) + '-' + this

.p(d.getdate())

const restime = this.p(d.gethours()) + ':' + this.p(d.getminutes()) + ':' + this.p(d.getseconds())

p為不夠10新增0的函式

p(s) ,

2、2019-03-07 12:00:00轉換為 thu mar 07 2019 12:00:00 gmt+0800 (中國標準時間)

1、 parserdate(date) 

},2、

var a='2020-01-01';

a = a.replace(/-/g,'/')

var datea = (new date(a)).gettime()

3、將時間戳轉換成日期格式:

function

timestamptotime(timestamp)

timestamptotime(1403058804);

console.log(timestamptotime(1403058804));//

2014-06-18 10:33:24

4、將日期格式轉換成時間戳:

var date = new date('2014-04-23 18:55:49:123');

//有三種方式獲取

var time1 =date.gettime();

var time2 =date.valueof();

var time3 =date.parse(date);

console.log(time1);

//1398250549123

console.log(time2);//

1398250549123

console.log(time3);//

1398250549000

以上三種獲取方式的區別:

第一、第二種:會精確到毫秒

第三種:只能精確到秒,毫秒用000替代

以上三個輸出結果可觀察其區別

時間格式轉換 時間戳

時間 附 dateformat parser new dateformat eeee,mmmm dd,yyyy dateformat formatter new dateformat eee.mm dd dateformat sdf new dateformat yyyy mm dd hh mm s...

各種時間格式轉換 時間戳轉換

1 後端介面返回時間格式轉換成時間戳 例 2021 02 15t09 33 08.694 0000 方案1 const time 2021 02 15t09 33 08.694 0000 時間戳 new date time gettime 方案2 安裝moment import moment fro...

JS將時間戳轉換時間格式

var time entry.createtime 時間戳 13位字串 var createtime new date settime time 通過時間戳設定時間值 var date createtime.format yyyy mm dd hh mm ss 測試下這種方式 newcell8.in...