0

有没有一种方法可以记录并在控制台中输出自刷新特定 jquery 操作以来经过的时间?

我有这个代码:

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

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

我想要从刷新到fadeIn发生的时间。

4

1 回答 1

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();
    });
});
于 2013-04-24T14:20:56.740 回答