高分辨率时间戳
performance.now()
返回一个精确的时间戳:自当前网页开始加载以来的毫秒数,包括微秒。
更一般地说,它返回自 performanceTiming.navigationStart
事件以来经过的时间。
t = performance.now();
例如,在 Web 浏览器的主上下文中,如果网页开始加载 6288 毫秒和 319 微秒之前,performance.now()
将返回 6288.319
。
performance.now()
返回一个精确的时间戳:自当前网页开始加载以来的毫秒数,包括微秒。
更一般地说,它返回自 performanceTiming.navigationStart
事件以来经过的时间。
t = performance.now();
例如,在 Web 浏览器的主上下文中,如果网页开始加载 6288 毫秒和 319 微秒之前,performance.now()
将返回 6288.319
。