Ext each 不是使用break,是使用return 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*/
    }
});

你可能感兴趣的:(Ext each 不是使用break,是使用return false 跳出循环)