javascript – 为什么这个循环逐渐变慢?

for (i = 0; i < $('body > p font i').length; i++) {
    current = [$('body > p font i').eq(index), $('body > p font i').eq(index).index('body > p font u, body > p font i')];
    getState(current[1]);
}

function getState(index) {
    // Lookup the object's index, then crawl up until you find a match
    while ($('body > p font u, body > p font i').eq(--index).filter('u').length == 0);
    console.log($('body > p font u, body > p font i').eq(index).text());
}

相当简单的问题.我正在针对选择器过滤器迭代jQuery结果集,直到找到匹配项,然后在我去的过程中爬上结果集.

这个循环运行的时间越长,它变得越慢,几乎呈指数级.

最佳答案 您正在每次迭代中搜索DOM树,这是一项昂贵的操作,解决方案是缓存:

var nodes = $('body > p font i');
for (var i = 0, size = nodes.length; i < size; i++) {
    current = [nodes.eq(index),nodes.eq(index).index('body > p font u, body > p font i')];
}
点赞