jquery 高手请进!~

2024-12-26 10:01:26
推荐回答(3个)
回答1:

可以用each

$("ul li").each(function(i){

});

回答2:

var image=$("ul li");
可以通过 image[i] 获取//注:i=0,i

回答3:

$("ul li").each(function(){
if ($(this).attr("id") == 'three'){
alert("three");
}else{
alert("other");
}
});