performance-timing icon indicating copy to clipboard operation
performance-timing copied to clipboard

performance-timing.js利用HTML5的navigation timing API进行前端性能数据采集,是性能监控平台搭建的利器

Results 1 performance-timing issues
Sort by recently updated
recently updated
newest added

$(window).on("load", function () { //不能影响最后的时间计算 window.setTimeout(function () { _P.setup(); }, 0); }); 请问,这个定时器的作用是啥? 我之前遇到过这种情况,计算onload时间的时候,如果没有定时器返回的时间是错的。 window.onload = function () { finishLoadTime() - startLoadTime() // 0 wrong setTimeout(function () { finishLoadTime() -...