I need a jQuery filter/map/each type function to check if ALL elements satisfy a condition:
function areAllValid(inputs){
return $.someFunction(inputs, function(input) { return input.length > 0; });
}
If ALL inputs have length > 0 someFunction
should return true. Anything like this in jQuery?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…