为什么不使用CSS伪属性呢。您可以简单地使用:first-child
和:last-child
以CSS样式的第一个和最后一个元素为目标。
下面是如何使用CSS伪属性实现这一点。
div.post:last-child div.testing_imran img {
your styles for last image
}
另外,如果您想以CSS文件中的最后一个图像为目标,那么您的代码也可以工作。您实际上不需要将CSS类添加到图像本身,但将CSS类添加到div容器也可以。
div.testing_imran.imd_last img {
your styles for last image
}
如果您想在jQuery中以图像为目标,那么同样的规则也适用于jQuery。