高解析度時間戳
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
。