2012-02-03 12 views

答えて

14

私はあなたがfalseを返すと、それはループの次の繰り返しを行いません。

Ext.each(arrayObj, function(obj){ 
    if(obj.isSomethingTrue()){ 
     doSomething(); 
     return false; /*this will prevent each from looking at 
         the next obj in the arrayObj*/ 
    } 
}); 
関連する問題