在 Javascript/ECMAScript 中计算时间跨度

发布于 2024-09-06 15:09:51 字数 481 浏览 2 评论 0原文

我有一个包含毫秒数的变量,它表示从现在到未来指定点的时间跨度。

我想将这个毫秒数字转换为可以向用户显示的时间跨度值。

我知道我可以通过模算术并手动向用户显示结果来完成此操作,但我想使用 Javascript/ECMAScript 内置的 Date() API 来完成此操作。

这就是我生成它的方式:

var timespanInMS = timeInFuture.getTime() - now.getTime();
var diff = new Date( timespanInMS );

alert( "Hours: " + diff.getHours() + " Minutes: " + diff.getMinutes() );

但是,这只在用户的计算机位于 UTC 时区时才有效。如果它们位于太平洋 (UTC-8),则“diff”的值会相差 16 小时(即使 timespanInMS 数字相同)。

谢谢

I've got a variable that holds a number of miliseconds which represents the timespan from now to a specified point in the future.

I want to convert this milisecond figure into a timespan value I can display to users.

I know I can do this the naive way with modulo arithmetic and manually displaying the result to the user, but I want to do this using the Date() API built-in to Javascript/ECMAScript.

This is how I generate it:

var timespanInMS = timeInFuture.getTime() - now.getTime();
var diff = new Date( timespanInMS );

alert( "Hours: " + diff.getHours() + " Minutes: " + diff.getMinutes() );

However this only works when the user's computer is in the UTC timezone. If they're in Pacific (UTC-8) then the value of 'diff' is off by 16 hours (even though the timespanInMS figure is the same).

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

榕城若虚 2024-09-13 15:09:51

也许 getUTCHoursgetUTCMinutes 可能有效?请参阅 https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects /日期了解更多信息。

Perhaps getUTCHours and getUTCMinutes might work? See https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Date for more information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文