JS - 利用performance.timing进行性能分析
发布日期:2021-10-02 12:55:45 浏览次数:21 分类:技术文章

本文共 839 字,大约阅读时间需要 2 分钟。

window.onload = function(){
setTimeout(function(){
let t = performance.timing console.log('DNS查询耗时 :' + (t.domainLookupEnd - t.domainLookupStart).toFixed(0)) console.log('TCP链接耗时 :' + (t.connectEnd - t.connectStart).toFixed(0)) console.log('request请求耗时 :' + (t.responseEnd - t.responseStart).toFixed(0)) console.log('解析dom树耗时 :' + (t.domComplete - t.domInteractive).toFixed(0)) console.log('白屏时间 :' + (t.responseStart - t.navigationStart).toFixed(0)) console.log('domready时间 :' + (t.domContentLoadedEventEnd - t.navigationStart).toFixed(0)) console.log('onload时间 :' + (t.loadEventEnd - t.navigationStart).toFixed(0)) if(t = performance.memory){
console.log('js内存使用占比 :' + (t.usedJSHeapSize / t.totalJSHeapSize * 100).toFixed(2) + '%') } })}

转载地址:https://blog.csdn.net/Jie_1997/article/details/112238199 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:vs code下载缓慢或下载失败的解决方法
下一篇:JS - 字符串首位字符转换为大写

发表评论

最新留言

初次前来,多多关照!
[***.217.46.12]2024年04月09日 03时10分50秒