可以用each$("ul li").each(function(i){ });
var image=$("ul li");可以通过 image[i] 获取//注:i=0,i
$("ul li").each(function(){ if ($(this).attr("id") == 'three'){ alert("three"); }else{ alert("other"); } });