溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

JavaScript如何利用performance.timing進行性能分析

發(fā)布時間:2022-03-30 11:06:15 來源:億速云 閱讀:703 作者:小新 欄目:編程語言

小編給大家分享一下JavaScript如何利用performance.timing進行性能分析,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

performance.timing:利用performance.timing進行性能分析

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內(nèi)存使用占比:' +  (t.usedJSHeapSize / t.totalJSHeapSize * 100).toFixed(2) + '%')
        }
    })
}

看完了這篇文章,相信你對“JavaScript如何利用performance.timing進行性能分析”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI