使用Jquery的许多项目的性能

时间:2017-06-02 19:55:30

标签: jquery performance loops

我使用以下代码循环

$( ".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多个项目并需要循环它。如何解决性能问题?

谢谢!

0 个答案:

没有答案