中国标准时间(如:2019-08-20 17:43)转换成格林尼治时间方式方法

Posted rxqlx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中国标准时间(如:2019-08-20 17:43)转换成格林尼治时间方式方法相关的知识,希望对你有一定的参考价值。

 function formatDateT(dateTime) // 中国标准时间(2019-08-20 17:43)转换成格林尼治时间
      var timestamp = dateTime;
      var newDate = new Date(dateTime + 8 * 3600 * 1000);
      return newDate.toISOString();  
  ,
var dealDate = 2019-08-20 17:43;
const geLinDate = formatDateT(new Date(dealDate).getTime());
console.log(geLinDate); // "2019-08-20T17:43:00.000Z"

 

以上是关于中国标准时间(如:2019-08-20 17:43)转换成格林尼治时间方式方法的主要内容,如果未能解决你的问题,请参考以下文章

moment中国标准时间互转

GMT+0800 (中国标准时间) 渲染层网络层错误

美国和中国时间换算

时间格式处理

中国标准时间转换成年月日

Js各种时间转换问题(YYYY-MM-DD 时间戳 中国标准时间)