如何在上一篇文章中添加“最后一个”?

时间:2011-02-12 19:39:09

标签: jquery

$("body.page-template-testimonials-php article:last-child").addClass("last");

这是我用来定位页面上最后一篇文章的代码。但是,它不起作用。我做错了什么?

以下是标记:http://pastebin.com/m6nHxEQh

3 个答案:

答案 0 :(得分:1)

我认为如果你使用它会更容易:

$("#content article:last").addClass("last");

因为我在任何地方都没有看到body.page-template-testimonials-php类。

答案 1 :(得分:1)

$('body.page-template-testimonials-php article').last().addClass('last');

答案 2 :(得分:0)

在应用class之前使用.eq()进行过滤:

$("body.page-template-testimonials-php article").eq(-1).addClass("last");