PerformanceNavigationTiming: unloadEventEnd 属性

unloadEventEnd 只读属性返回一个 DOMHighResTimeStamp,表示当前文档的 unload 事件处理程序完成后的时间。

unloadEventEnd 属性可以具有以下值

  • 一个 DOMHighResTimeStamp,表示当前文档的 unload 事件处理程序完成后的时间。
  • 如果之前没有文档,则为0
  • 如果前一个页面位于另一个来源,则为0

示例

测量unload 事件处理程序时间

unloadEventEnd 属性可用于测量处理 unload 事件处理程序所需的时间。

这有助于测量长时间运行的 unload 事件处理程序的时间。

js
window.addEventListener("unload", (event) => {
  // Some long running code
});

使用 PerformanceObserver 的示例,它会在浏览器性能时间轴中记录新的 navigation 性能条目时发出通知。使用 buffered 选项访问观察器创建之前的条目。

js
const observer = new PerformanceObserver((list) => {
  list.getEntries().forEach((entry) => {
    const unloadEventTime = entry.unloadEventEnd - entry.unloadEventStart;
    if (unloadEventTime > 0) {
      console.log(
        `${entry.name}: unload event handler time: ${unloadEventTime}ms`,
      );
    }
  });
});

observer.observe({ type: "navigation", buffered: true });

使用 Performance.getEntriesByType() 的示例,它仅显示在调用此方法时浏览器性能时间轴中存在的 navigation 性能条目

js
const entries = performance.getEntriesByType("navigation");
entries.forEach((entry) => {
  const loadEventTime = entry.unloadEventEnd - entry.unloadEventStart;
  if (unloadEventTime > 0) {
    console.log(`${entry.name}:
      load event handler time: ${unloadEventTime}ms`);
  }
});

规范

规范
导航计时级别 2
# dom-performancenavigationtiming-unloadeventend

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅