我使用以下代码循环
$( ".eco_li" ).each( function( index, element ){
var string_temp = $(this).find('.eco_a').html();
if ((string_temp.toLowerCase().indexOf(key_words.toLowerCase()) < 0)) {
$(this).css("display", "none");
}else{
$(this).css("display", "block");
}
});
当有超过2000个项目的类eco_li时,速度将非常慢。我需要在页面中显示4000多个项目并需要循环它。如何解决性能问题?
谢谢!