jquery???each?????????return

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery???each?????????return相关的知识,希望对你有一定的参考价值。

???????????????   index   function   his   blog   jquery   ????????????   class   tab   

$("#dishTypeTable tbody").find("tr").eq(0).siblings().each(function(index){
                var chooseNum = $(this).find("td").eq(1).find("input:checked").length;
                console.log(chooseNum);
                if (chooseNum == 0) {
                    layer.msg("?????????????????????????????????????????????????????????");
                    return;
                }
            });

??????????????????????????????????????????????????????,debug?????????each???????????????return,??????????????????????????????????????????.

??????????????????,return true(return) ?????????continue,??????????????????

??????????????????return false ????????? break,??????????????????

??????????????????function,??????????????????????????????,???catch????????????return

try {
                $("#dishTypeTable tbody").find("tr").eq(0).siblings().each(function(index){
                    var chooseNum = $(this).find("td").eq(1).find("input:checked").length;
                    console.log(chooseNum);
                    if (chooseNum == 0) {
                        throw "?????????????????????????????????????????????????????????";
                        return;
                    }
                });
            } catch (e) {
                layer.msg(e);
                return;
            }

??????????????????

以上是关于jquery???each?????????return的主要内容,如果未能解决你的问题,请参考以下文章

Jquery之each函数详解

## $.each() ???.each()?????????

JQuery中$.each 和$(selector).each()的区别详解

jquery中使用each()和for循环哪个好些

jquery $().each和$.each()

jquery中的each方法,$.each this.each $.fn.each