我如何在jQuery中找到每个a
中的第一个$(".tweet li")
标记,并使其具有类“toptweet
”???
答案 0 :(得分:3)
$('.tweet li').each(function(){
$(this).find('a').first().addClass('toptweet');
});
答案 1 :(得分:3)
$(".tweet li").each(function(){
$(this).find("a:eq(0)").addClass("toptweet");
});
答案 2 :(得分:3)
$('.tweet li').each(function() {
$(this).find('a:first').addClass('toptweet');
});
答案 3 :(得分:0)
$("li.tweet").("a:eq(1)").addclass
答案 4 :(得分:0)
$(".tweet li a:first").addClass('toptweet');