如何在jQuery中找到每个$(".tweet li")中的第一个a标记,并使其具有类“toptweet”?
$(".tweet li")
a
toptweet
发布于 2012-03-14 12:39:14
$("li.tweet").("a:eq(1)").addclass
https://stackoverflow.com/questions/9695992
相似问题