2013-04-24 50 views
0

有沒有一種方法可以在控制檯中記錄並輸出自從刷新到特定的jquery動作以來所經過的時間?自頁面刷新以來的記錄時間

我有這樣的代碼:

$(document).ready(function(){ 
    $('.content').load('url.jsp', function(){ 
     //some code or plugin that changes the layout of loaded content 

     $('.content').fadeIn(); 
    }); 
}); 

我想,因爲刷新花費的時間,直到fadeIn發生。

回答

1

如果您的瀏覽器支持,請使用Date對象或console.time

console.time('foo'); 
var d = new Date(); 

$(document).ready(function(){ 
    $('.content').load('url.jsp', function(){ 

     console.timeEnd('foo'); 
     console.log(new Date.getTime() - d.getTime() + 'ms'); 

     $('.content').fadeIn(); 
    }); 
});