如何使用setTimeout/setInterval计算手机浏览器的cpu效率?
function fn() {
var start = new Date();
setInterval(function () {
var _s = new Date();
console.info(_s - start);
start = _s;
}, 1000/60)
}
fn()
如何使用setTimeout/setInterval计算手机浏览器的cpu效率?
function fn() {
var start = new Date();
setInterval(function () {
var _s = new Date();
console.info(_s - start);
start = _s;
}, 1000/60)
}
fn()
您可以使用控制台时间:
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);