0

如何使用setTimeout/setInterval计算手机浏览器的cpu效率?

function fn() {
    var start = new Date();
    setInterval(function () {
        var _s = new Date();
        console.info(_s - start);
        start = _s;
    }, 1000/60)
}
fn()
4

1 回答 1

1

您可以使用控制台时间:

function someFunction(){
    console.timeEnd('someFunction timer');
    //this function's code goes here...
    console.time('someFunction timer');
}

这将为您提供执行函数所需的时间。这是你需要的吗?

或者也许这个?

var start = new Date().getTime();

//your code
var end = new Date().getTime();
var time = end - start;
alert('Execution time: ' + time);
于 2012-10-25T11:48:27.323 回答