簡體   English   中英

將類應用於每個元素(LI)的第一個元素(A)?

[英]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');

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM