본문 바로가기
Web Programing!/JQuery

[JQUERY] each Loop에서의 break/continue 방법

by 어설픈봉봉이 2012. 4. 19.
반응형
SMALL

 

 

 

 each Loop에서의 break/continue 방법

   $("selector").find("option").each(function() {

      if(this.value == "3") {

         return false; // break - each Loop에서 나가는 의미 

         return true; //continue - each Loop를 계속한다는 의미  

     }

   });

 

반응형