Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
:odd セレクターを使用していくつかの要素に css コードを追加していますが、最初の 5 つの一致に対してのみこれを行いたいと考えています。:odd が停止する前にアクションをトリガーする回数を制限する方法はありますか?
はい、使用して:lt(5)ください。これは、最初の 5 つ (0 ~ 4) の奇数要素のみを選択することを意味します。
:lt(5)
例えば:$('li:odd:lt(5)').css('background','red');
$('li:odd:lt(5)').css('background','red');
jsFiddle の例
参照: http://api.jquery.com/lt-selector/
セレクターは次のとおりです。
$(".yourclass:odd:lt(5)").show();