问答详情
源自:6-10 jQuery遍历之each()

提前返回的情况

$("button:first").click(function() {        //遍历所有的li        //修改每个li内的字体颜色        $("li").each(function(index, element) {            if (index <5) {                $(this).css('color','red')            }else            return        })    }) 提前返回的情况,return后随便返回什么,false、true、1、0、其他数都是一样的效果

提问者:qq_鸿鸥之艨_0 2017-08-10 19:12

个回答

  • yeehom
    2017-08-11 08:47:21

    只有return false可以

    jQuery内部是全等比较,即 返回值 === false;