素材巴巴 > 程序开发 >

JavaScript forEach 跳出当前循环

程序开发 2023-09-03 14:21:01

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

Js 中 forEach 不能使用 continue, break 跳出循环

可以使用 if 语句控制,或者 return . (return true/false) // return --> 类似 for 循环的 continue 


//全选

            $scope.selectAll = function(){

                var all = $scope.all;

                angular.forEach($scope.items, function (item, index) {

                    if(item.hasInventory){

                        item.checked = all;

                        if(all)

                            os[index] = item;

                    }else{

                        return;    //跳出当前循环、或者不写 else 

                    }

                });

                if(!all)

                    os = new Array();

            }


转载于:https://my.oschina.net/jack088/blog/495065


标签:

素材巴巴 Copyright © 2013-2021 http://www.sucaibaba.com/. Some Rights Reserved. 备案号:备案中。