JQuery each 方法
用 JQuery 中的each 方法可以方便的遍历节点的集合,使用方法如下:
使用案例一:
$("input[type='text']").each(function(index){
$(this).css("background-color","red");
});
使用案例二:
$("#content").children().each(function(index){
$(this).css("background-color","red");
});
另外,退出each方法的使用:
return false;//退出所有循环,相当于平常的break;
return true; //跳出当前循环,进入下一个循环,相当于平常的continue;
$("input[type='text']").each(function(){
if($(this).val()=="testValue")
return false;
});