performance.now() 与 Date.now() [英] performance.now() vs Date.now()

查看:16
本文介绍了performance.now() 与 Date.now()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

performance.now()Date.now() 有什么区别?

我是否应该考虑将 performance.now() 作为 Date.now() 的替代品,因为 performace.now() 更一致和独立?

Should I consider performance.now() as a replacement for Date.now() since performace.now() is more consistent and independent?

推荐答案

它们都有不同的用途.

performance.now() 相对于页面加载,并且在数量级上更精确.用例包括基准测试和其他需要高分辨率时间的情况,例如媒体(游戏、音频、视频等)

performance.now() is relative to page load and more precise in orders of magnitude. Use cases include benchmarking and other cases where a high-resolution time is required such as media (gaming, audio, video, etc.)

需要注意的是,performance.now() 仅适用于较新的浏览器(包括 IE10+).

It should be noted that performance.now() is only available in newer browsers (including IE10+).

Date.now() 相对于 Unix 纪元 (1970-01-01T00:00:00Z) 并依赖于系统时钟.用例包括自 JavaScript 开始以来相同的旧日期操作.

Date.now() is relative to the Unix epoch (1970-01-01T00:00:00Z) and dependent on system clock. Use cases include same old date manipulation ever since the beginning of JavaScript.

参见 当毫秒不是足够了:performance.nownow 方法 (Internet Explorer) - MSDN 了解更多信息.

See When milliseconds are not enough: performance.now and now method (Internet Explorer) - MSDN for more information.

官方 W3C 规范可以在这里找到:高分辨率时间 API

The official W3C spec can be found here: High Resolution Time API

这篇关于performance.now() 与 Date.now()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆