js中跳出循环的方式
Posted 清梦徐徐丶莫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中跳出循环的方式相关的知识,希望对你有一定的参考价值。
- for循环
- 跳出本次循环continue,继续下次循环
var arr = [1,2,3,4,5,6,7,8]
for(var i=0, len = arr.length ; i< len ; i++){
if(i == 2){
continue;
}
console.log(i);
}
//0,1,3,4,5,6,7
- 跳出整个循环break
for(var i=0, len = arr.length ; i< len ; i++){
if(i == 2){
break;
}
console.log(i);
}
// 0,1
- for-in 循环
退出方式同for循环
- jq的$.each循环
- 退出当前循环 return true
$.each(arr,function(index,oo){
if(index == 2){
return true;
}
console.log(oo);
})
// 1,2,4,5,6,7,8
- 退出整个循环return false
$.each(arr,function(index,oo){
if(index == 2){
return false;
}
console.log(oo);
});
// 1,2,3
- forEach循环
- 退出当前循环
arr.forEach(function(oo,index){
if(index == 2){
return;
//return false; //效果同上
// return true; //效果同上
}
console.log(oo);
});
// 1,2,4,5,6,7,8
- 退出整个forEach循环:抛异常
try{
arr.forEach(function(oo,index){
if(index == 2){
throw ‘jumpout‘;
}
console.log(oo);
});
}catch(e){
}
// 1,2
以上是关于js中跳出循环的方式的主要内容,如果未能解决你的问题,请参考以下文章