11

考虑以下代码 HTML + JavaScript:

<!DOCTYPE html>
<html>
<body>

<p id="demo">Click the button to display a date after changing the hours, minutes, and seconds.</p>

<button onclick="myFunction()">Try it</button>
 <script>
 function myFunction()
  {
  var d = new Date();
  d.setHours(0,0,0,0);
  document.write(d + '<br/>');
  document.write('ISO Date '+ d.toISOString() + '<br/>');
  //I want it to be 2013-04-17T00:00:00.000Z
  }
 </script>
</body>
</html>

输出

Thu Apr 18 2013 00:00:00 GMT+0530 (India Standard Time)
ISO Date 2013-04-17T18:30:00.000Z

任何人都可以帮助理解日期和时间的这种差异

4

3 回答 3

25
var d = new Date();
d.setHours(-12, d.getTimezoneOffset(), 0, 0); //removing the timezone offset and 12 hours
console.log(d.toISOString()); //2013-04-17T00:00:00.000Z

我不知道,为什么您需要提前一天提供 ISO 日期,但万一是错字:

var d = new Date();
d.setHours(0, -d.getTimezoneOffset(), 0, 0); //removing the timezone offset.
console.log(d.toISOString()); //2013-04-18T00:00:00.000Z
于 2013-04-18T13:51:00.743 回答
4
2013-18-04 00:00:00 GMT+0530
2013-17-04 18:30:00 GMT+0000

这是两个时间戳。第一个有时区,第二个是 GMT(无时区调整)。如果您采用第二个时间戳并添加05:30:0018:30:00您得到第二天的午夜。这与第一个时间戳匹配。

于 2013-04-18T13:32:53.540 回答
1

您也可以像这样删除时区:

let birthday = new Date(this.profile.birthday + ' UTC').toISOString();
于 2017-09-21T09:33:54.877 回答