運用環境では、より複雑なソリューションを使用できます。しかし、開発者のために私はこれをしました:
localStorage["markTime"] = new Date().getTime();
window.location.href = window.location.href + "dev"
// browser goes off and gets new page but we have a local time where this started
<script> <!-- first line after the head tag (forgetting meta data, etc) -->
alert(new Date().getTime() - localStorage["markTime"] + "ms");
</script>
これは、ページのダウンロードにかかった時間の正確な数値を示していますか?