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). 这意味着只选择前五个 (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();