我正在尝试在我的图书网站上执行以下操作:http: //seanbooks.tumblr.com
- 具有“book”类的前三个 div 应该具有“fourcol”类,其余的应该具有“threecol”类。
- “threecol”的每第四个实例都应该有“last”类
我想知道是否有一种方法可以使用我尝试使用http://api.jquery.com/eq-selector/来定位“书”类的前 3 个实例
<script>
$(".book").slice(0, 3).addClass('fourcol').removeClass('threecol')
.filter(':nth-child(3)').addClass('last').end()
.filter(':nth-child(4n)').addClass('last');
</script>
感谢您的帮助!