本文主要是介绍强大的each遍历,不多说了上代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、$(".defaultApp").each(function(){$(this).find(".businessphoto ul li").each(function(v){
$(this).removeClass("first");
if(v%5 == 0){
$(this).addClass("first");
}
});
});
二、
$("form").find('input[name="publish_pics[]"]').each(function(v){
if(v == 0){
web_icons.webImg = $(this).val();
} else{
web_icons.bigImg = $(this).val();
}
});
这篇关于强大的each遍历,不多说了上代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!