提前返回的情况
$("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、其他数都是一样的效果
$("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、其他数都是一样的效果
2017-08-10
举报