forEach大概是没有办法中断了,我们可以采用其它的办法来实现循环 Array.prototype.some 当return true的时候,会终止遍历 Array.prototype.every 当return false的时候,会终止遍历 参考:如何跳出forEach遍历