javascript – 将日期时间选择器转换为UTC时间

栏目: JavaScript · 发布时间: 5年前

内容简介:翻译自:https://stackoverflow.com/questions/31283604/converting-datetime-picker-to-utc-time

我试图标准化数据库从引导时间日期表单中获取的时间,但是我收到以下错误

Uncaught TypeError: e.date.getTime is not a function

当我打印出e.date时,它是2015年7月15日星期三16:30:51 GMT 1200

我试图遵循这个指南,但我不得不改变一些事情来实现这个远 http://jsfiddle.net/TC6Gr/37/

$('#start_time').datetimepicker({
    format: 'DD-MM-YYYY h:mm:ss a',
}).on("dp.change", function (e) {
    alert(e.date);
    $('#start-time-before').html(e.date); // Log
    var TimeZoned = new Date(e.date.setTime(e.date.getTime() + (e.date.getTimezoneOffset() * 60000)));
    $('#end_time').datetimepicker('setStartDate', TimeZoned);
    $('#start_time').datetimepicker('setDate', TimeZoned);
    $('#start-time-adjusted').html(TimeZoned); // Log
});
你应该试试这个.
var offset = e.date.getTimezoneOffset() * 60000;
 var now = e.date.getTime();
 var utc = now + offset;
 var TimeZoned = new Date(utc);

翻译自:https://stackoverflow.com/questions/31283604/converting-datetime-picker-to-utc-time


以上所述就是小编给大家介绍的《javascript – 将日期时间选择器转换为UTC时间》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Hello World

Hello World

Hannah Fry / W. W. Norton Company / 2018-9 / GBP 17.99

A look inside the algorithms that are shaping our lives and the dilemmas they bring with them. If you were accused of a crime, who would you rather decide your sentence—a mathematically consistent ......一起来看看 《Hello World》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

html转js在线工具
html转js在线工具

html转js在线工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具