0
有沒有一種方法可以在控制檯中記錄並輸出自從刷新到特定的jquery動作以來所經過的時間?自頁面刷新以來的記錄時間
我有這樣的代碼:
$(document).ready(function(){
$('.content').load('url.jsp', function(){
//some code or plugin that changes the layout of loaded content
$('.content').fadeIn();
});
});
我想,因爲刷新花費的時間,直到fadeIn
發生。