简体   繁体   中英

Apply a class to the First element (A) of Each element (LI)?

我如何在jQuery中找到每个$(".tweet li")的第a标签,并使其具有类' toptweet '?

$('.tweet li').each(function(){
    $(this).find('a').first().addClass('toptweet');
});
$(".tweet li").each(function(){
  $(this).find("a:eq(0)").addClass("toptweet");
});
$('.tweet li').each(function() { 
    $(this).find('a:first').addClass('toptweet');
});
$("li.tweet").("a:eq(1)").addclass
$(".tweet li a:first").addClass('toptweet');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM