關於jquery的each

1.與for的性能相比each不如forjquery

2.jquery的$().each,$.each的區別數組

  $().each,對於這個方法,在dom處理上面用的較多。例如:dom

  $(「input[name=’ch’]」).each(function(i){性能

      if($(this).attr(‘checked’)==true){this

          //一些操做代碼索引

          }input

  }源碼

  對於遍歷一個數組,用$.each()來處理,簡直爽到了極點。例如:io

  $.each([{「name」:」limeng」,」email」:」xfjylimeng」},{「name」:」hehe」,」email」:」xfjylimeng」},function(i,n){function

      alert(「索引:」+i,」對應值爲:」+n.name);
  });

3.each的源碼

相關文章
相關標籤/搜索