有没有一种方法可以记录并在控制台中输出自刷新特定 jquery 操作以来经过的时间?
我有这个代码:
$(document).ready(function(){
$('.content').load('url.jsp', function(){
//some code or plugin that changes the layout of loaded content
$('.content').fadeIn();
});
});
我想要从刷新到fadeIn
发生的时间。