$(document.body).|.each(false)|this.style.color|$(this).toggleClass("example")

1361 단어
자세히 보기





  
  


  
Click here
to iterate through
these divs.
$(document.body).click(function () { $("div").each(function (i) { if (this.style.color != "blue") { this.style.color = "blue"; } else { this.style.color = ""; } }); });

      if ($(this).is("#stop")) {           $("span").text("Stopped at div index #"+ index);           return false;         }


    $("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;
        }
      });
    });





좋은 웹페이지 즐겨찾기