标签: javascript date momentjs
我正在从后端接收2个值。
2019-05-01T17:38:00Z
UTC+10
UTC-2
我需要根据偏移值从日期中添加或减去。
答案 0 :(得分:1)
使用moment()。utcOffset()
// these are equivalent moment().utcOffset("+08:00"); moment().utcOffset(8); moment().utcOffset(480);