Skip to content

Instantly share code, notes, and snippets.

@xydiva
Last active April 18, 2018 01:27
Show Gist options
  • Save xydiva/3f54dfcbe6e8b4830439232ea485a3d7 to your computer and use it in GitHub Desktop.
Save xydiva/3f54dfcbe6e8b4830439232ea485a3d7 to your computer and use it in GitHub Desktop.
统计加载时间
(function(){
  const t = window.performance && performance.timing;
  if (!t) {
    return;
  }
  const loadTime = (t.loadEventEnd - t.navigationStart) / 1000;
  alert(`This page loaded in ${loadTime} seconds`);
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment