$("body.page-template-testimonials-php article:last-child").addClass("last");
这是我用来定位页面上最后一篇文章的代码。但是,它不起作用。我做错了什么?
答案 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");