jQuery查找li元素直到,如果有nextUntil元素

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery查找li元素直到,如果有nextUntil元素相关的知识,希望对你有一定的参考价值。

Catches click, if element has nextUntil elements, triggers a slideDown of child elements and returns false (to stop the anchor), if there are no nextUntil elements, does nothing and allows the click through (the anchor works).
  1. $("li.par_cat").click(function() {
  2. var el_count = $(this).nextUntil("li.par_cat").size();
  3. if(el_count == 0){
  4. // I'll add something here later.
  5. }else{
  6. $(this).nextUntil("li.par_cat").each(function() {
  7. $(this).slideToggle("slow");
  8. });
  9. return false;
  10. }
  11. });

以上是关于jQuery查找li元素直到,如果有nextUntil元素的主要内容,如果未能解决你的问题,请参考以下文章

讨论班jQuery学习

jquery nextAll() 与 prevAll()

jQuery查找并列出特定DIV中UL内的所有LI元素

jquery查找数组元素是不是存在的问题

[ jquery 过滤器 prevUntil([exp|ele][,fil]) ] 此方法用于在选择器的基础之上搜索查找当前元素之前所有的同辈元素,直到遇到匹配的那个元素为止

jQuery如何根据数据属性值查找元素?