0

我的项目中有 pcap 导入和读取功能。我在我的项目中处理时区。如果我将时区从 GMT 更改为其他亚洲/加尔各答,则不会读取/显示导入的 pcap。

如何在 javascript 中处理时区问题。我将值存储到数据库中的是 2013-05-07 00:04:23.435751-06。

它应该在所有时区处理。提前致谢

4

1 回答 1

0

我希望您正在寻找这份精美的文档。谢谢。

更新 试试这个:

  var str= '2013-05-07 00:04:23.435751-06';
  var n = str.slice( -3 );
  var time = str.replace(" ","T");
  time = time.slice(0, -3);
  alert(calcTime(time, n));

  function calcTime(time, offset) {

  // create Date object for current location
  d = new Date(Date.parse(time));

  // convert to msec
  // add local time zone offset
  // get UTC time in msec
  utc = d.getTime() + (d.getTimezoneOffset() * 60000);

  // create new Date object for different city
  // using supplied offset
  nd = new Date(utc + (3600000*offset));

  // return time as a string
  return "The Time is " + nd.toLocaleString();

  }
于 2013-05-07T08:40:23.960 回答