首页 > 代码库 > js jquery 结束循环

js jquery 结束循环

js 中跳出循环用break,结束本次循环用continue,

jquery 中each循环 跳出用return true,或者return false,

下面的代码的本意是输入组名查找组id,如果没有找到返回‘nofind‘,在实际执行过程中,当找到组id的时候,执行了 return n.PLM_ID,这句后,还是红继续执行了return ‘nofind‘,也就是无论找没找到,都是返回nofind,经过查找确认才发现jquery中结束循环只能用return false 或者 retunr true,

 

            function uie_getGroupId(groupName) {                var uie_groupId = ‘nofind‘;                $.each(uie_formPara.groups, function (i, n) {                    if (groupName == n.PLM_LABLE) {                        return n.PLM_ID;                    }                });                return "nofind";            }

改进后:

 function uie_getGroupId(groupName) {        var uie_groupId = ‘nofind‘;        $.each(uie_formPara.groups, function (i, n) {            if (groupName == n.PLM_LABLE) {                uie_groupId = n.PLM_ID;                return true;            }        });        return uie_groupId;    }