私は自分の本のサイトで次のことをしようとしています:http ://seanbooks.tumblr.com
- クラス「book」の最初の3つのdivにはクラス「fourcol」があり、残りのdivにはクラス「threecol」が必要です。
- 「threecol」の4番目のインスタンスごとに、クラス「last」が必要です。
http://api.jquery.com/eq-selector/を使用して、「book」クラスの最初の3つのインスタンスをターゲットにする方法があるかどうか疑問に思っています。
<script>
$(".book").slice(0, 3).addClass('fourcol').removeClass('threecol')
.filter(':nth-child(3)').addClass('last').end()
.filter(':nth-child(4n)').addClass('last');
</script>
助けてくれてありがとう!