将此值转换为浏览器的时区
我想从给定的时区(我对此有时区偏移)将日期时间转换为local(browser的时间),并使用MOMM.JS.JS。
这是我的代码
var date = "08/31/2017 02:45:00";
var timezone = '-330';
var d = moment.utc(date).utcOffset(timezone);
console.log(d.local().format());
现在,我想使用Moment.js
d.local().format()
给您转换为浏览器时区的日期时间。检查此