1. 程式人生 > >jQuery.each的function中有哪些引數

jQuery.each的function中有哪些引數

1、沒有引數

$("img").each(function(){
  $(this).toggleClass("example");
});

2、有一個引數,這個引數為index

$("img").each(function(i){
   this.src = "test" + i + ".jpg";
 });

3、有兩個引數,第一個引數為index,第二個引數為dom元素本身

$("button").click(function () { 
$("div").each(function (index, domEle) { 
  // domEle == this 
  $(domEle).css("backgroundColor"
, "yellow"); if ($(this).is("#stop")) { $("span").text("Stopped at div index #" + index); return false; } }); });